bday2020/docker-compose.yml

17 lines
289 B
YAML
Raw Normal View History

2020-09-04 23:47:48 +00:00
version: "2"
2020-09-05 16:25:28 +00:00
volumes:
frontend_home:
2020-09-04 23:47:48 +00:00
services:
2020-09-05 23:45:43 +00:00
ui:
build: ui/docker
restart: 'unless-stopped'
2020-09-04 23:47:48 +00:00
volumes:
2020-09-05 16:25:28 +00:00
- "frontend_home:/home/node"
2020-09-05 23:45:43 +00:00
- "${PWD}/ui:/srv/vue/bday2020"
2020-09-04 23:47:48 +00:00
ports:
- 8000:8000
2020-09-05 23:45:43 +00:00
- 8080:8080