Docker UI

This commit is contained in:
2021-03-18 23:17:41 -03:00
parent 3b38df5a70
commit 4611e901fc

View File

@ -20,6 +20,33 @@ services:
ports:
- 9123:9000
ui-server:
container_name: money_ui
image: nginx:alpine
ports:
- 8080:80
volumes:
- .:/code
- ./ui/docker/nginx.conf:/etc/nginx/conf.d/default.conf
ui-php:
container_name: money_ui_php
build:
context: ./ui/docker
dockerfile: PHP.Dockerfile
volumes:
- .:/code
ports:
- 9124:9000
ui-gulp:
container_name: money_ui_gulp
build:
context: ./ui/docker
dockerfile: GULP.Dockerfile
volumes:
- ./ui:/app
db:
container_name: money_db
image: mariadb:latest