web-application-engineering/docker-compose.yml
Marco Zeisler 8af61b14c0 added info
2021-03-21 19:50:33 +01:00

25 lines
576 B
YAML

version: "2"
# INFO: to not build but just pull - comment out build keys
services:
waecm_g4_be:
container_name: waecm_g4_be_container
hostname: waecm_g4_be
image: pfingstfrosch/waecm-2021-group-04-bsp-1-be
build:
context: ./backend
dockerfile: ./Dockerfile
command: python manage.py runserver 0.0.0.0:8000
ports:
- 8000:8000
waecm_g4_fe:
container_name: waecm_g4_fe_container
image: pfingstfrosch/waecm-2021-group-04-bsp-1-fe
build:
context: ./frontend
dockerfile: ./Dockerfile
ports:
- 4200:80