Automatizado

This commit is contained in:
2021-04-12 00:43:39 -04:00
parent 35bcbd1979
commit 5129cca099
3 changed files with 76 additions and 5 deletions

View File

@ -11,7 +11,6 @@ services:
- ./app/docker/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- app-php
app-php:
container_name: money_app_php
build:
@ -21,6 +20,11 @@ services:
- .:/code
ports:
- 9123:9000
app-cron:
image: sleeck/crond
volumes:
- ./automation/crontab:/etc/cron.d/auto-crontab
- ./automation/logs:/var/log/cron
ui-server:
container_name: money_ui
@ -32,7 +36,6 @@ services:
- ./ui/docker/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- ui-php
ui-php:
container_name: money_ui_php
build:
@ -53,7 +56,6 @@ services:
- ./ws/docker/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- ws-php
ws-php:
container_name: money_ws_php
restart: unless-stopped
@ -63,7 +65,6 @@ services:
volumes:
- .:/code
db:
container_name: money_db
image: mariadb:latest
@ -77,7 +78,6 @@ services:
MYSQL_PASSWORD: 'money_pass'
volumes:
- dbdata:/var/lib/mysql
adminer:
container_name: money_adminer
image: adminer:latest