You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
550 B

# TODO:
# - [ ] Pořídit vhodný django settings.py pro docker, aby to používalo postgress
services:
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/usr/src
ports:
- 8000:8000
# env_file:
# - ./.env.dev
# db:
# image: postgres:13-bullseye
# volumes:
# - postgres_data:/var/lib/postgresql/data/
# environment:
# - POSTGRES_USER=hello_django
# - POSTGRES_PASSWORD=hello_django
# - POSTGRES_DB=hello_django_dev
# volumes:
# postgres_data: