diff options
author | 2019-09-21 14:31:25 +1000 | |
---|---|---|
committer | 2019-09-21 15:23:37 +1000 | |
commit | fa67b3ecd60ece794daa0d1a241e6cf2c7227e3d (patch) | |
tree | c3a80f71c6ebac2f153cce4853b6c56c3e113a86 /docker-compose.yml | |
parent | Run tests with coverage in pipenv script (diff) |
Change CI DB setup to use docker.
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 0a8e6bcd..4ea110c4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,7 @@ services: - "127.0.0.1:7777:5432" environment: POSTGRES_DB: pysite - POSTGRES_PASSWORD: supersecretpassword + POSTGRES_PASSWORD: pysite POSTGRES_USER: pysite web: @@ -32,7 +32,7 @@ services: - .:/app:ro - staticfiles:/var/www/static environment: - DATABASE_URL: postgres://pysite:supersecretpassword@postgres:5432/pysite + DATABASE_URL: postgres://pysite:pysite@postgres:5432/pysite DEBUG: "true" SECRET_KEY: suitable-for-development-only STATIC_ROOT: /var/www/static |