diff options
author | 2019-09-18 19:59:36 +0200 | |
---|---|---|
committer | 2019-09-18 19:59:36 +0200 | |
commit | c73825da901c7b047a8be532fd489ac6a460bd07 (patch) | |
tree | 6f6766c237e46095f609d21796b4994cbff03515 | |
parent | Add test cases for `TypeError` fallbacks. (diff) |
Nuke `pysite.dockerapp`.
-rw-r--r-- | docker/pysite.dockerapp | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/docker/pysite.dockerapp b/docker/pysite.dockerapp deleted file mode 100644 index 4e90ff87..00000000 --- a/docker/pysite.dockerapp +++ /dev/null @@ -1,42 +0,0 @@ -version: 0.3.0 -name: pysite -description: | - Our community website, built on Django and PostgreSQL. -namespace: python-discord -maintainers: - - name: Johannes Christ - email: [email protected] - ---- -version: "3.6" -services: - django: - build: - context: . - command: docker/app/scripts/migrate_and_serve.sh - ports: - - "127.0.0.1:4000:4000" - environment: - DATABASE_URL: "postgres://${pg_user}:${pg_passwd}@${pg_host}/${pg_db}" - DEBUG: 'false' - SECRET_KEY: "${secret_key}" - depends_on: - - postgres - - postgres: - image: postgres:11-alpine - ports: - - "127.0.0.1:5432:5432" - environment: - POSTGRES_DB: "${pg_db}" - POSTGRES_USER: "${pg_user}" - POSTGRES_PASSWORD: "${pg_passwd}" - ---- -pg_user: pysite -pg_db: pysite -pg_passwd: supersecretpassword -pg_host: postgres -secret_key: 'suitable-for-development-only' - -# vim: ft=yaml: |