Added template for Liferay Portal CE (#119)

This commit is contained in:
Ralf 2016-05-16 06:59:18 +02:00 committed by Bill Maxwell
parent 0e9fb0bc21
commit 3ffc0780e1
8 changed files with 403 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# Liferay Portal Community Edition 6.2
Installs Liferay Portal, an open source enterprise portal. Uses MySQL as database.
### First Start
Use the following credentials to log in as the default administrative user:
* user name: **test@liferay.com**
* password: **test**
If you choose to run the Setup Wizard at first start, you can create a different
administrative user.
### Watch the Logs
Open a terminal via `Execute Shell` on the Liferay container, then use `tail`
on the log files in `/opt/liferay/tomcat/logs` and `/opt/liferay/logs`, e.g.
```bash
tail -f /opt/liferay/tomcat/logs/catalina.2016-04-13.log
tail -f /opt/liferay/logs/liferay.2016-04-13.log
```

View File

@ -0,0 +1,34 @@
liferay:
ports:
- 8080:8080/tcp
environment:
SETUP_WIZARD_ENABLED: ${SETUP_WIZARD_ENABLED}
DB_KIND: mysql
DB_HOST: liferaydb
DB_USERNAME: ${MYSQL_USER}
DB_PASSWORD: ${MYSQL_PASSWORD}
log_driver: ''
labels:
io.rancher.container.pull_image: always
tty: true
log_opt: {}
image: rsippl/liferay:6.2.5-1
links:
- mysql:liferaydb
stdin_open: true
mysql:
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
log_driver: ''
labels:
io.rancher.container.pull_image: always
tty: true
command:
- --character-set-server=utf8
- --collation-server=utf8_general_ci
log_opt: {}
image: mysql:5.6.30
stdin_open: true

View File

@ -0,0 +1,56 @@
.catalog:
name: "Liferay"
version: "6.2.5-1"
description: "Liferay Portal Community Edition"
uuid: liferay-6.2.5-1
minimum_rancher_version: v1.0.0
questions:
- variable: SETUP_WIZARD_ENABLED
label: "Enable setup wizard"
description: "Enable this option if the Setup Wizard should be displayed the first time the portal is started."
required: true
type: "boolean"
default: false
- variable: MYSQL_DATABASE
description: "Name of the database"
label: "Database name"
type: "string"
required: true
default: "lportal"
- variable: MYSQL_USER
description: "Login name for the database user"
label: "Database login name"
type: "string"
required: true
default: "liferay"
- variable: MYSQL_PASSWORD
description: "Password for the database user"
label: "Database password"
type: "string"
required: true
default: "secret"
- variable: MYSQL_ROOT_PASSWORD
description: "Password for the database root user"
label: "Database root password"
type: "string"
required: true
default: "secret"
liferay:
scale: 1
health_check:
port: 8080
interval: 2000
unhealthy_threshold: 3
request_line: GET / HTTP/1.0
healthy_threshold: 2
response_timeout: 2000
mysql:
scale: 1
health_check:
port: 3306
interval: 2000
unhealthy_threshold: 3
response_timeout: 2000
healthy_threshold: 2

View File

@ -0,0 +1,26 @@
# Liferay Portal Community Edition 7.0
Installs Liferay Portal, an open source enterprise portal. Uses MySQL as database.
### Requirements
Make sure the Liferay container is started on a host with at least 4 GB RAM.
### First Start
Use the following credentials to log in as the default administrative user:
* user name: **test@liferay.com**
* password: **test**
If you choose to run the Setup Wizard at first start, you can create a different
administrative user. Afterwards you may have to restart the Liferay container.
### Watch the Logs
Open a terminal via `Execute Shell` on the Liferay container, then use `tail`
on the log files in `/opt/liferay/tomcat/logs` and `/opt/liferay/logs`, e.g.
```bash
tail -f /opt/liferay/tomcat/logs/catalina.2016-04-13.log
tail -f /opt/liferay/logs/liferay.2016-04-13.log
```

View File

@ -0,0 +1,34 @@
liferay:
ports:
- 8080:8080/tcp
environment:
SETUP_WIZARD_ENABLED: ${SETUP_WIZARD_ENABLED}
DB_KIND: mysql
DB_HOST: liferaydb
DB_USERNAME: ${MYSQL_USER}
DB_PASSWORD: ${MYSQL_PASSWORD}
log_driver: ''
labels:
io.rancher.container.pull_image: always
tty: true
log_opt: {}
image: rsippl/liferay:7.0.0-2
links:
- mysql:liferaydb
stdin_open: true
mysql:
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
log_driver: ''
labels:
io.rancher.container.pull_image: always
tty: true
command:
- --character-set-server=utf8
- --collation-server=utf8_general_ci
log_opt: {}
image: mysql:5.6.30
stdin_open: true

View File

@ -0,0 +1,56 @@
.catalog:
name: "Liferay"
version: "7.0.0-2"
description: "Liferay Portal Community Edition"
uuid: liferay-7.0.0-2
minimum_rancher_version: v1.0.0
questions:
- variable: SETUP_WIZARD_ENABLED
label: "Enable setup wizard"
description: "Enable this option if the Setup Wizard should be displayed the first time the portal is started."
required: true
type: "boolean"
default: false
- variable: MYSQL_DATABASE
description: "Name of the database"
label: "Database name"
type: "string"
required: true
default: "lportal"
- variable: MYSQL_USER
description: "Login name for the database user"
label: "Database login name"
type: "string"
required: true
default: "liferay"
- variable: MYSQL_PASSWORD
description: "Password for the database user"
label: "Database password"
type: "string"
required: true
default: "secret"
- variable: MYSQL_ROOT_PASSWORD
description: "Password for the database root user"
label: "Database root password"
type: "string"
required: true
default: "secret"
liferay:
scale: 1
health_check:
port: 8080
interval: 2000
unhealthy_threshold: 3
request_line: GET / HTTP/1.0
healthy_threshold: 2
response_timeout: 2000
mysql:
scale: 1
health_check:
port: 3306
interval: 2000
unhealthy_threshold: 3
response_timeout: 2000
healthy_threshold: 2

View File

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="552pt"
height="557pt"
viewBox="0 0 552 557"
version="1.1"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="icon.svg">
<metadata
id="metadata70">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs68" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1458"
inkscape:window-height="1138"
id="namedview66"
showgrid="false"
inkscape:zoom="0.1767767"
inkscape:cx="483.57864"
inkscape:cy="119.84073"
inkscape:window-x="2996"
inkscape:window-y="96"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
<path
fill="#f8f8f8"
d=" M 550.27 0.00 L 552.00 0.00 L 552.00 38.57 C 551.26 37.49 550.84 36.32 550.75 35.04 C 550.47 29.87 548.37 25.00 548.36 19.79 C 546.25 17.70 544.60 15.28 543.22 12.66 C 540.02 10.83 538.05 7.70 535.29 5.35 C 539.50 2.60 544.53 2.14 549.37 1.41 C 549.59 1.06 550.04 0.35 550.27 0.00 Z"
id="path6" />
<path
fill="#ffffff"
d=" M 23.47 12.70 C 26.03 12.12 28.69 12.33 31.29 12.14 C 35.51 12.53 39.75 12.39 43.98 12.41 C 180.30 12.43 316.62 12.40 452.95 12.44 C 474.17 12.22 495.42 12.75 516.64 12.21 C 526.37 11.24 535.74 19.12 537.11 28.70 C 536.64 53.79 536.98 78.89 536.84 103.98 C 536.77 240.98 536.74 377.98 536.75 514.99 C 536.55 520.02 537.87 525.48 535.15 530.07 C 532.87 535.35 527.59 538.93 521.99 539.72 C 356.02 539.70 190.02 539.69 24.05 539.73 C 18.77 538.86 13.97 535.36 11.47 530.64 C 8.92 524.73 10.09 518.20 9.99 511.98 C 9.71 357.10 10.03 202.20 9.68 47.32 C 10.88 39.87 9.15 32.22 10.72 24.83 C 12.11 18.60 18.07 15.10 23.47 12.70 Z"
id="path10" />
<path
fill="#101d3c"
d=" M 62.39 85.00 C 62.49 78.86 62.18 72.69 62.55 66.57 C 92.84 66.61 123.14 66.74 153.42 66.50 C 154.08 67.87 153.73 69.49 153.82 70.96 C 153.80 99.64 153.85 128.32 153.79 157.00 C 153.72 157.37 153.57 158.10 153.50 158.46 C 123.20 158.24 92.88 158.36 62.57 158.40 C 62.14 133.98 62.51 109.46 62.39 85.00 Z"
id="path14" />
<path
fill="#25366b"
d=" M 172.36 68.04 C 172.41 67.66 172.51 66.91 172.56 66.53 C 202.81 66.73 233.07 66.56 263.32 66.62 C 263.49 97.19 263.51 127.79 263.31 158.37 C 233.07 158.38 202.82 158.24 172.58 158.44 C 172.36 157.29 172.28 156.13 172.33 154.97 C 172.36 125.99 172.31 97.01 172.36 68.04 Z"
id="path16" />
<path
fill="#82b1e2"
d=" M 282.20 67.18 L 282.86 66.55 C 312.63 66.65 342.41 66.66 372.18 66.54 C 372.49 66.88 373.11 67.57 373.42 67.91 C 373.35 97.67 373.34 127.43 373.42 157.19 C 373.08 157.49 372.40 158.09 372.06 158.39 C 342.32 158.34 312.57 158.31 282.83 158.41 C 282.53 158.08 281.94 157.43 281.64 157.10 C 281.70 127.36 281.71 97.61 281.64 67.87 L 282.20 67.18 Z"
id="path18" />
<path
fill="#9dc0e7"
d=" M 364.97 86.96 C 366.32 85.85 367.00 83.98 368.67 83.27 C 368.96 90.70 370.06 98.43 368.86 105.72 C 366.48 109.27 364.27 113.12 360.60 115.50 C 356.91 117.83 355.35 122.27 351.70 124.66 C 347.40 127.36 345.21 132.20 341.10 135.10 C 337.45 137.79 335.40 142.10 331.54 144.57 C 328.50 146.43 327.10 149.92 324.19 151.95 C 327.00 152.96 330.03 152.80 332.98 152.95 C 345.06 153.25 357.14 152.85 369.22 153.15 C 368.90 153.36 368.25 153.78 367.93 153.99 C 344.99 154.17 322.02 154.25 299.13 152.67 C 301.83 149.54 304.70 146.50 308.12 144.14 C 310.53 140.58 313.64 137.61 317.14 135.12 C 319.92 131.29 323.28 127.87 327.17 125.17 C 329.83 121.23 333.32 117.93 337.15 115.15 C 339.57 111.61 342.72 108.62 346.22 106.15 C 348.81 102.21 352.31 98.96 356.08 96.16 C 358.57 92.67 361.64 89.65 364.97 86.96 Z"
id="path20" />
<path
fill="#bdd4ef"
d=" M 360.60 115.50 C 364.27 113.12 366.48 109.27 368.86 105.72 C 369.86 115.44 369.15 125.29 369.34 135.05 C 369.29 141.08 369.56 147.12 369.22 153.15 C 357.14 152.85 345.06 153.25 332.98 152.95 C 330.03 152.80 327.00 152.96 324.19 151.95 C 327.10 149.92 328.50 146.43 331.54 144.57 C 335.40 142.10 337.45 137.79 341.10 135.10 C 345.21 132.20 347.40 127.36 351.70 124.66 C 355.35 122.27 356.91 117.83 360.60 115.50 Z"
id="path22" />
<path
d="m 62.39,176.29 90.89,-0.67 c 0.005,25.7517 0.14231,-36.77571 0.08,91.83 -30.26,-0.14 -60.51,-0.1 -90.77,-0.02 -0.4,-1.45 -0.13,-2.99 -0.21,-4.47 0.01,-28.89 -0.01,-57.78 0.01,-86.67 z"
id="path24"
inkscape:connector-curvature="0"
style="fill:#25366b"
sodipodi:nodetypes="cccccc" />
<path
d="m 172.35,175.79 c 31.00674,0.0685 58.48706,-0.3114 91.13,0.01 -0.18,30.18 0.15,61.37 -0.17,91.53 -30.15,0.13 -60.29,-0.02 -90.44,0.08 l -0.51,-0.61 c -0.05,-30.13 -0.03,-60.87 -0.01,-91.01 z"
id="path26"
inkscape:connector-curvature="0"
style="fill:#82b1e2"
sodipodi:nodetypes="cccccc" />
<path
d="m 391.63,176.84 c 0.33,-0.29 0.99,-0.89 1.32,-1.18 28.94627,0.51788 61.1253,0.13064 89.72,0.63 0.07,28.9 0.01,57.81 0.03,86.71 -0.28,1.41 0.63,3.32 -0.55,4.41 -30.12,-0.12 -60.26,0.08 -90.38,-0.1 -0.3,-30.14 -0.02,-60.31 -0.14,-90.47 z"
id="path28"
inkscape:connector-curvature="0"
style="fill:#82b1e2"
sodipodi:nodetypes="ccccccc" />
<path
fill="#bdd4ef"
d=" M 395.36 181.20 C 395.77 181.10 396.58 180.89 396.99 180.79 C 408.02 180.69 419.04 180.83 430.07 180.75 C 432.30 180.67 434.52 180.93 436.72 181.32 C 438.23 181.60 439.74 181.84 441.27 182.08 C 438.99 184.61 435.56 185.92 433.86 188.98 C 432.23 191.58 429.91 193.62 427.40 195.35 C 424.13 197.39 422.94 201.50 419.56 203.43 C 416.84 205.07 414.85 207.55 413.07 210.13 C 411.04 213.11 407.28 214.29 405.32 217.34 C 403.76 219.72 401.78 221.78 399.36 223.28 C 397.13 224.41 396.96 227.07 396.26 229.18 C 396.01 227.69 395.69 226.21 395.46 224.71 C 395.21 210.21 395.38 195.70 395.36 181.20 Z"
id="path30" />
<path
fill="#9abfe6"
d=" M 436.72 181.32 C 440.68 180.06 444.93 180.80 449.02 180.68 C 454.29 181.08 459.79 180.33 464.83 182.29 C 460.23 185.82 456.26 190.11 452.44 194.46 C 436.49 209.47 421.38 225.39 405.75 240.76 C 402.63 244.09 398.94 246.93 396.42 250.80 C 395.31 242.20 394.33 233.36 395.46 224.71 C 395.69 226.21 396.01 227.69 396.26 229.18 C 396.19 230.44 396.12 231.70 396.08 232.96 C 401.77 226.37 408.30 220.57 414.33 214.29 C 419.23 209.57 423.77 204.47 428.87 199.96 C 433.12 196.88 436.62 192.94 440.32 189.24 C 442.51 186.87 445.12 184.86 446.92 182.15 C 445.05 181.79 443.14 181.86 441.27 182.08 C 439.74 181.84 438.23 181.60 436.72 181.32 Z"
id="path32" />
<path
fill="#aac7ea"
d=" M 441.27 182.08 C 443.14 181.86 445.05 181.79 446.92 182.15 C 445.12 184.86 442.51 186.87 440.32 189.24 C 436.62 192.94 433.12 196.88 428.87 199.96 C 423.77 204.47 419.23 209.57 414.33 214.29 C 408.30 220.57 401.77 226.37 396.08 232.96 C 396.12 231.70 396.19 230.44 396.26 229.18 C 396.96 227.07 397.13 224.41 399.36 223.28 C 401.78 221.78 403.76 219.72 405.32 217.34 C 407.28 214.29 411.04 213.11 413.07 210.13 C 414.85 207.55 416.84 205.07 419.56 203.43 C 422.94 201.50 424.13 197.39 427.40 195.35 C 429.91 193.62 432.23 191.58 433.86 188.98 C 435.56 185.92 438.99 184.61 441.27 182.08 Z"
id="path34" />
<path
fill="#99bee6"
d=" M 246.21 205.30 C 250.41 201.29 254.22 196.86 258.82 193.29 C 259.38 195.12 259.76 197.02 259.82 198.95 C 260.35 218.64 260.05 238.33 260.13 258.01 C 259.93 259.55 260.60 261.39 259.66 262.75 C 245.85 263.62 231.90 262.86 218.04 263.10 C 215.64 262.98 213.04 263.45 210.82 262.31 C 213.84 262.02 216.86 262.03 219.89 262.08 C 232.97 262.24 246.08 262.55 259.14 262.04 C 259.59 248.94 259.41 235.81 259.23 222.70 C 259.42 218.53 259.27 214.34 258.78 210.19 C 257.43 211.71 256.17 213.30 254.75 214.74 C 241.36 228.04 228.08 241.45 214.70 254.76 C 212.21 257.37 209.66 259.95 206.65 261.98 C 201.24 262.75 195.54 262.34 190.10 261.65 C 208.59 242.68 227.51 224.09 246.21 205.30 Z"
id="path36" />
<path
fill="#aecaeb"
d=" M 254.75 214.74 C 256.17 213.30 257.43 211.71 258.78 210.19 C 259.27 214.34 259.42 218.53 259.23 222.70 C 254.45 226.10 251.47 231.32 246.77 234.78 C 243.34 237.38 241.54 241.57 237.86 243.91 C 234.34 246.34 232.31 250.29 228.91 252.86 C 225.39 255.42 223.22 259.31 219.89 262.08 C 216.86 262.03 213.84 262.02 210.82 262.31 C 209.41 262.44 208.02 262.33 206.65 261.98 C 209.66 259.95 212.21 257.37 214.70 254.76 C 228.08 241.45 241.36 228.04 254.75 214.74 Z"
id="path38" />
<path
fill="#bdd4ef"
d=" M 246.77 234.78 C 251.47 231.32 254.45 226.10 259.23 222.70 C 259.41 235.81 259.59 248.94 259.14 262.04 C 246.08 262.55 232.97 262.24 219.89 262.08 C 223.22 259.31 225.39 255.42 228.91 252.86 C 232.31 250.29 234.34 246.34 237.86 243.91 C 241.54 241.57 243.34 237.38 246.77 234.78 Z"
id="path40" />
<path
fill="#82b1e2"
d=" M 62.37 285.35 C 92.83 285.16 123.30 285.32 153.76 285.28 C 153.86 315.76 153.81 346.25 153.79 376.73 C 123.32 376.71 92.84 376.84 62.37 376.67 C 62.40 346.23 62.39 315.79 62.37 285.35 Z"
id="path42" />
<path
fill="#82b1e2"
d=" M 282.18 285.31 C 312.43 285.24 342.69 285.25 372.95 285.30 L 373.39 285.94 C 373.39 316.04 373.32 346.13 373.42 376.22 L 372.78 376.70 C 343.82 376.81 314.87 376.71 285.92 376.75 C 284.55 376.45 282.58 377.42 281.66 376.09 C 281.72 346.04 281.62 315.99 281.71 285.95 L 282.18 285.31 Z"
id="path44" />
<path
fill="#25366b"
d=" M 391.91 285.24 C 422.16 285.30 452.42 285.25 482.67 285.27 C 482.73 315.75 482.69 346.24 482.69 376.72 C 453.80 376.77 424.91 376.73 396.01 376.74 C 394.58 376.45 392.76 377.32 391.58 376.36 C 391.74 347.57 391.61 318.77 391.65 289.98 C 391.87 288.43 391.22 286.67 391.91 285.24 Z"
id="path46" />
<path
fill="#bdd4ef"
d=" M 286.16 290.18 C 293.45 290.09 300.75 290.17 308.05 290.16 C 312.60 290.21 317.20 289.35 321.72 290.34 C 324.70 290.90 327.75 290.97 330.78 291.18 C 328.42 294.59 326.04 298.16 322.43 300.37 C 318.83 302.45 317.50 306.79 314.00 308.99 C 311.54 310.53 309.67 312.76 308.08 315.16 C 306.01 318.43 301.92 319.58 299.83 322.82 C 298.23 325.16 296.41 327.40 294.00 328.96 C 290.69 331.04 288.99 334.72 286.18 337.33 C 285.47 333.26 285.82 329.10 285.66 324.99 C 285.76 313.65 285.51 302.29 285.78 290.95 L 286.16 290.18 Z"
id="path48" />
<path
fill="#a2c3e8"
d=" M 321.72 290.34 C 323.98 289.23 326.57 289.88 328.99 289.77 C 335.27 290.02 341.75 289.37 347.87 291.12 C 347.74 291.42 347.48 292.02 347.35 292.32 C 329.84 309.83 312.30 327.33 294.79 344.85 C 291.83 347.48 289.51 350.84 286.19 353.03 C 285.73 348.04 285.59 343.02 285.70 338.03 L 286.18 337.33 C 288.99 334.72 290.69 331.04 294.00 328.96 C 296.41 327.40 298.23 325.16 299.83 322.82 C 301.92 319.58 306.01 318.43 308.08 315.16 C 309.67 312.76 311.54 310.53 314.00 308.99 C 317.50 306.79 318.83 302.45 322.43 300.37 C 326.04 298.16 328.42 294.59 330.78 291.18 C 327.75 290.97 324.70 290.90 321.72 290.34 Z"
id="path50" />
<path
fill="#9dc0e7"
d=" M 143.18 308.28 C 145.91 306.49 146.65 302.74 149.64 301.25 C 149.76 308.84 150.30 316.44 150.30 324.04 L 149.77 324.73 C 137.41 337.04 125.13 349.45 112.77 361.77 C 109.90 364.72 106.69 367.37 104.18 370.67 C 106.88 371.00 109.59 371.25 112.27 371.66 C 110.67 372.56 108.80 372.36 107.04 372.35 C 98.43 372.31 89.81 372.06 81.22 371.55 C 80.99 371.37 80.54 371.00 80.32 370.82 C 81.19 368.70 83.45 367.61 85.13 366.21 C 87.56 364.60 88.59 361.70 90.73 359.79 C 92.80 357.45 96.02 356.38 97.65 353.62 C 99.05 351.45 100.75 349.45 102.97 348.09 C 106.02 346.45 107.29 343.06 109.74 340.77 C 112.01 338.27 115.54 337.10 117.15 333.98 C 118.54 331.49 120.85 329.79 123.16 328.22 C 126.43 326.11 127.64 322.05 130.85 319.88 C 132.57 318.61 134.54 317.54 135.64 315.61 C 137.48 312.54 140.28 310.30 143.18 308.28 Z"
id="path52" />
<path
fill="#bdd4ef"
d=" M 112.77 361.77 C 125.13 349.45 137.41 337.04 149.77 324.73 C 150.08 340.42 150.34 356.16 149.83 371.84 C 143.92 372.31 137.90 371.61 131.94 372.14 C 125.39 371.41 118.80 372.70 112.27 371.66 C 109.59 371.25 106.88 371.00 104.18 370.67 C 106.69 367.37 109.90 364.72 112.77 361.77 Z"
id="path54" />
<path
fill="#82b1e2"
d=" M 172.33 399.02 C 172.51 397.56 171.88 395.87 172.80 394.60 C 202.96 394.67 233.13 394.57 263.29 394.65 C 263.63 421.75 263.34 448.88 263.44 475.99 C 263.30 479.34 263.70 482.73 263.24 486.05 C 234.48 486.40 205.69 486.10 176.92 486.21 C 175.37 486.17 173.76 486.44 172.33 485.70 C 172.33 456.81 172.34 427.91 172.33 399.02 Z"
id="path56" />
<path
d="m 281.72,394.68 c 30.53,-0.1 61.06,-0.08 91.59,-0.01 0.22,30.21 0.15284,61.57137 0.45284,91.78137 -92.17284,-1.14137 0,0 -92.17284,-1.14137 0.23,-30.21 -0.03,-60.42 0.13,-90.63 z"
id="path58"
inkscape:connector-curvature="0"
style="fill:#25366b"
sodipodi:nodetypes="ccccc" />
<path
fill="#101d3c"
d=" M 391.73 394.65 C 421.98 394.56 452.24 394.74 482.48 394.55 C 482.99 408.01 482.56 421.54 482.70 435.03 C 482.64 451.92 482.81 468.83 482.62 485.72 L 482.21 486.25 C 452.06 486.10 421.90 486.24 391.74 486.18 C 391.58 455.68 391.61 425.15 391.73 394.65 Z"
id="path60" />
<path
fill="#a5c3e8"
d=" M 175.79 399.89 C 176.10 399.68 176.73 399.28 177.04 399.08 C 197.60 399.35 218.28 398.38 238.75 400.19 C 238.41 401.76 236.82 402.67 235.80 403.80 C 231.56 407.23 228.45 411.81 224.13 415.16 C 220.79 418.78 217.45 422.42 213.68 425.61 C 209.26 430.90 203.77 435.12 199.31 440.38 C 194.28 444.66 190.22 449.93 185.15 454.18 C 182.51 456.69 180.44 460.02 177.18 461.77 C 176.48 460.65 176.20 459.34 176.22 458.04 C 175.54 438.67 175.61 419.27 175.79 399.89 Z"
id="path62" />
<path
fill="#bdd4ef"
d=" M 177.11 400.08 C 189.37 399.62 201.69 399.86 213.98 400.02 C 215.27 400.30 217.20 399.65 218.03 400.99 C 213.61 406.49 208.21 411.22 203.10 416.10 C 194.86 425.41 185.17 433.38 177.17 442.92 C 176.23 434.65 176.81 426.30 176.65 418.00 C 176.89 412.04 176.09 405.94 177.11 400.08 Z"
id="path64" />
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,5 @@
name: Liferay Portal
description: |
An open source enterprise portal
version: 7.0.0-2
category: Enterprise Portal