diff options
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 1f101c0b..8519e763 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,9 +20,9 @@ services: postgres: image: postgres:11-alpine environment: - POSTGRES_DB: pysite + POSTGRES_DB: pydis_site POSTGRES_PASSWORD: supersecretpassword - POSTGRES_USER: pysite + POSTGRES_USER: pydis_site web: build: @@ -36,7 +36,7 @@ services: volumes: - .:/app:ro environment: - DATABASE_URL: postgres://pysite:supersecretpassword@postgres/pysite + DATABASE_URL: postgres://pydis_site:supersecretpassword@postgres/pydis_site DEBUG: "true" SECRET_KEY: suitable-for-development-only |