diff options
author | 2018-09-04 23:19:34 +0200 | |
---|---|---|
committer | 2018-09-04 23:19:34 +0200 | |
commit | 82c4d8ca2d6292fe2dfeced360a307d73cd77efd (patch) | |
tree | 0f4be429011c92bd32c64d15f519f17686f230cb | |
parent | Only delete build-time dependencies. (diff) |
Add `dockerapp` file.
-rw-r--r-- | pysite.dockerapp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/pysite.dockerapp b/pysite.dockerapp new file mode 100644 index 00000000..4a811861 --- /dev/null +++ b/pysite.dockerapp @@ -0,0 +1,49 @@ +version: 0.1.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: + image: registry.gitlab.com/python-discord/projects/site/django:latest + ports: + - "127.0.0.1:4000:4000" + environment: + DATABASE_URL: "postgres://${pg_user}:${pg_passwd}@${pg_host}/${pg_db}" + DEBUG: 0 + SECRET_KEY: "${secret_key}" + depends_on: + - migrator + - postgres + + postgres: + image: postgres:11-alpine + environment: + POSTGRES_DB: "${pg_db}" + POSTGRES_USER: "${pg_user}" + POSTGRES_PASSWORD: "${pg_passwd}" + + migrator: + image: registry.gitlab.com/python-discord/projects/site/django:latest + environment: + DATABASE_URL: "postgres://${pg_user}:${pg_passwd}@${pg_host}/${pg_db}" + DEBUG: 0 + SECRET_KEY: "${secret_key}" + command: "python manage.py migrate" + depends_on: + - postgres + +--- +pg_user: pysite +pg_db: pysite +pg_passwd: '' +pg_host: postgres +secret_key: 'suitable-for-development-only' + +# vim: ft=yaml: |