23 lines
413 B
YAML
23 lines
413 B
YAML
|
services:
|
||
|
dwinzo_beta:
|
||
|
build:
|
||
|
context: ./app
|
||
|
dockerfile: Dockerfile
|
||
|
container_name: dwinzo_beta
|
||
|
stdin_open: true
|
||
|
tty: true
|
||
|
ports:
|
||
|
- "8200:80"
|
||
|
volumes:
|
||
|
# Bind the app directory for development purposes
|
||
|
- ./app:/app
|
||
|
networks:
|
||
|
- dwinzo_beta
|
||
|
|
||
|
networks:
|
||
|
dwinzo_beta:
|
||
|
driver: bridge
|
||
|
|
||
|
volumes:
|
||
|
frontend:
|
||
|
driver: local
|