mirror of
https://github.com/aykhans/series-robot-web.git
synced 2025-04-20 14:01:25 +00:00
20 lines
357 B
YAML
20 lines
357 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
volumes:
|
|
- dbdata:/var/lib/postgresql/data
|
|
env_file:
|
|
- config/db/databasepostgresql_env
|
|
|
|
django:
|
|
build: .
|
|
command: python3 src/manage.py runserver 0.0.0.0:8000 --settings=config.settings.production
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
dbdata: |