Docker UI
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user