You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
taiga/docker-compose.yml

43 lines
792 B

version: '2'
volumes:
postgres_data: {}
taiga_postgres: {}
taiga_static: {}
taiga_media: {}
networks:
backend: {}
services:
postgres:
# https://hub.docker.com/_/postgres/
image: postgres
networks:
- backend
volumes:
- postgres_data:/var/lib/postgresql/data
- ./db:/docker-entrypoint-initdb.d:ro
env_file:
- ./postgres.env
- ./taiga-db.env
taiga:
# https://hub.docker.com/r/andrey01/taiga
image: andrey01/taiga
# build: .
networks:
- backend
ports:
- 80:80
volumes:
- taiga_static:/usr/local/taiga/static
- taiga_media:/usr/local/taiga/media
env_file:
- ./taiga.env
- ./taiga-db.env
environment:
- TZ=Europe/Amsterdam
depends_on:
- postgres