cineclub-site/docker-compose.yml

22 lines
335 B
YAML
Raw Permalink Normal View History

2022-04-03 01:20:53 +02:00
version: "3"
services:
front:
build: ./front
ports:
- 3000:3000
volumes:
- ./front:/front
- /front/node_modules/
2022-04-03 01:20:53 +02:00
environment:
2022-04-03 01:20:53 +02:00
HOST: 0.0.0.0
2022-04-03 01:20:53 +02:00
2022-04-03 01:20:53 +02:00
server:
build: ./server
2022-04-03 01:20:53 +02:00
command: python manage.py runserver 0.0.0.0:8000
2022-04-03 01:20:53 +02:00
volumes:
2022-04-03 01:20:53 +02:00
- ./server:/code
ports:
- "8000:8000"