fix vvveb
This commit is contained in:
@@ -2,35 +2,38 @@
|
|||||||
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
||||||
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
||||||
# logo: svgs/vvveb.svg
|
# logo: svgs/vvveb.svg
|
||||||
|
# port: 80
|
||||||
|
|
||||||
services:
|
services:
|
||||||
vvveb:
|
vvveb:
|
||||||
image: vvveb/vvvebcms:latest
|
image: vvveb/vvvebcms:latest
|
||||||
volumes:
|
volumes:
|
||||||
- vvveb-files:/var/www/html
|
- vvveb-data:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_FQDN_VVVEB
|
- SERVICE_FQDN_VVVEB_80
|
||||||
- DB_ENGINE=mysqli #sqlite,pgsql
|
- DB_ENGINE=mysqli
|
||||||
- DB_HOST=mariadb
|
- DB_HOST=mariadb
|
||||||
- DB_USER=$SERVICE_USER_VVVEB
|
- DB_USER=${SERVICE_USER_VVVEB}
|
||||||
- DB_PASSWORD=$SERVICE_PASSWORD_VVVEB
|
- DB_PASSWORD=${SERVICE_PASSWORD_VVVEB}
|
||||||
- DB_NAME=vvveb
|
- DB_NAME=${MARIADB_DATABASE:-vvveb}
|
||||||
depends_on:
|
depends_on:
|
||||||
- mariadb
|
mariadb:
|
||||||
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
||||||
interval: 2s
|
interval: 2s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
||||||
mariadb:
|
mariadb:
|
||||||
image: mariadb:11
|
image: mariadb:11
|
||||||
volumes:
|
volumes:
|
||||||
- mariadb-data:/var/lib/mysql
|
- vvveb-mariadb-data:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=$SERVICE_PASSWORD_ROOT
|
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_ROOT}
|
||||||
- MYSQL_DATABASE=vvveb
|
- MYSQL_DATABASE=${MARIADB_DATABASE:-vvveb}
|
||||||
- MYSQL_USER=$SERVICE_USER_VVVEB
|
- MYSQL_USER=${SERVICE_USER_VVVEB}
|
||||||
- MYSQL_PASSWORD=$SERVICE_PASSWORD_VVVEB
|
- MYSQL_PASSWORD=${SERVICE_PASSWORD_VVVEB}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
|
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
|
||||||
interval: 5s
|
interval: 5s
|
@@ -2,35 +2,38 @@
|
|||||||
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
||||||
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
||||||
# logo: svgs/vvveb.svg
|
# logo: svgs/vvveb.svg
|
||||||
|
# port: 80
|
||||||
|
|
||||||
services:
|
services:
|
||||||
vvveb:
|
vvveb:
|
||||||
image: vvveb/vvvebcms:latest
|
image: vvveb/vvvebcms:latest
|
||||||
volumes:
|
volumes:
|
||||||
- vvveb-files:/var/www/html
|
- vvveb-data:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_FQDN_VVVEB
|
- SERVICE_FQDN_VVVEB_80
|
||||||
- DB_ENGINE=mysqli #sqlite,pgsql
|
- DB_ENGINE=mysqli
|
||||||
- DB_HOST=mysql
|
- DB_HOST=mysql
|
||||||
- DB_USER=$SERVICE_USER_VVVEB
|
- DB_USER=${SERVICE_USER_VVVEB}
|
||||||
- DB_PASSWORD=$SERVICE_PASSWORD_VVVEB
|
- DB_PASSWORD=${SERVICE_PASSWORD_VVVEB}
|
||||||
- DB_NAME=vvveb
|
- DB_NAME=${MYSQL_DATABASE:-vvveb}
|
||||||
depends_on:
|
depends_on:
|
||||||
- mysql
|
mysql:
|
||||||
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
||||||
interval: 2s
|
interval: 2s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql:8.4.2
|
image: mysql:8.4.2
|
||||||
volumes:
|
volumes:
|
||||||
- mysql-data:/var/lib/mysql
|
- vvveb-mysql-data:/var/lib/mysql
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=$SERVICE_PASSWORD_ROOT
|
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_ROOT}
|
||||||
- MYSQL_DATABASE=vvveb
|
- MYSQL_DATABASE=${MYSQL_DATABASE:-vvveb}
|
||||||
- MYSQL_USER=$SERVICE_USER_VVVEB
|
- MYSQL_USER=${SERVICE_USER_VVVEB}
|
||||||
- MYSQL_PASSWORD=$SERVICE_PASSWORD_VVVEB
|
- MYSQL_PASSWORD=${SERVICE_PASSWORD_VVVEB}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1"]
|
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1"]
|
||||||
interval: 5s
|
interval: 5s
|
@@ -2,15 +2,15 @@
|
|||||||
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
# slogan: Powerful and easy to use cms to build websites, blogs or ecommerce stores.
|
||||||
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
# tags: cms, blog, content, management, ecommerce, page-builder, nocode, mysql, sqlite, pgsql
|
||||||
# logo: svgs/vvveb.svg
|
# logo: svgs/vvveb.svg
|
||||||
|
# port: 80
|
||||||
|
|
||||||
services:
|
services:
|
||||||
vvveb:
|
vvveb:
|
||||||
image: vvveb/vvvebcms:latest
|
image: vvveb/vvvebcms:latest
|
||||||
volumes:
|
volumes:
|
||||||
- vvveb-files:/var/www/html
|
- vvveb-data:/var/www/html
|
||||||
environment:
|
environment:
|
||||||
- SERVICE_FQDN_VVVEB
|
- SERVICE_FQDN_VVVEB_80
|
||||||
- DB_ENGINE=sqlite #mysqli,pgsql
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
|
||||||
interval: 2s
|
interval: 2s
|
Reference in New Issue
Block a user