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.
28 lines
576 B
28 lines
576 B
version: "3"
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./app:/app
|
|
command: >
|
|
sh -c "python manage.py wait_for_db &&
|
|
python manage.py migrate &&
|
|
python manage.py runserver 0.0.0.0:8000"
|
|
environment:
|
|
- DB_HOST=db
|
|
- DB_NAME=app
|
|
- DB_USER=postgres
|
|
- DB_PASS=supersecretpassword
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres:10-alpine
|
|
environment:
|
|
- POSTGRES_DB=app
|
|
- POSRGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=supersecretpassword
|