You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: '3'
|
|
|
|
services:
|
|
web:
|
|
build: "."
|
|
links:
|
|
- "db:postgres"
|
|
ports:
|
|
- "8007:80"
|
|
volumes:
|
|
- ".:/app:rw"
|
|
- "./data:/data:rw"
|
|
command: python manage.py runserver 0.0.0.0:80
|
|
env_file:
|
|
- ./.env
|
|
db:
|
|
image: postgres:9.6-alpine
|
|
env_file:
|
|
- ./.env-db
|
|
volumes:
|
|
- ".:/app:rw"
|