covid-formity/docker-compose.yml

29 lines
689 B
YAML
Raw Normal View History

2020-03-26 08:15:59 +00:00
version: "3"
services:
postgres:
# postgres:9.6.17-alpine
image: postgres@sha256:c48c87e19b1c9bdc9d1de8a0f53fa1c7f91f887ecc06d0c2efd3f3425090b6c0
volumes:
- pgdata:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=secret
redis:
image: redis:5.0.8-alpine@sha256:cda5d02e4ea900a8d52e834bc3158e83b8a87a5b44ae081885aecf9b156dcff1
2020-03-26 08:15:59 +00:00
backend:
build: .
2020-03-26 19:09:12 +00:00
image: registry.k0.hswaw.net/informatic/covid-formity
2020-03-26 08:15:59 +00:00
ports:
- 5000:5000
volumes:
- .:/usr/src/app
2020-03-26 09:24:21 +00:00
environment:
- SPACEAUTH_DISABLE=true
2020-04-08 16:14:46 +00:00
- TEMPLATES_AUTO_RELOAD=true
- SHIPPING_KURJERZY_EMAIL
- SHIPPING_KURJERZY_PASSWORD
2020-03-26 08:15:59 +00:00
volumes:
pgdata: