Sign inSign up

warking/taiga-front

By warking

•Updated about 9 years ago

Image
0

344

warking/taiga-front repository overview

docker-compose.yml sample:

data:
  image: tianon/true
  volumes:
    - /var/lib/postgresql/data
    - /usr/local/taiga/media
    - /usr/local/taiga/static
    - /usr/local/taiga/logs
db:
  image: postgres
  environment:
    POSTGRES_USER: taiga
    POSTGRES_PASSWORD: taiga
  volumes_from:
    - data
taigaback:
  image: warking/taiga-back
  environment:
    ACCESS_URL_PREFIX: 192.168.193.113
    SECRET_KEY: examplesecretkey
    EMAIL_USE_TLS: 'True'
    EMAIL_HOST: smtp-mail.outlook.com
    EMAIL_PORT: 587
    EMAIL_HOST_USER: [email protected]
    EMAIL_HOST_PASSWORD: emailpass
    DEFAULT_FROM_EMAIL: [email protected]
  links:
    - db:postgres
  volumes_from:
    - data
taigafront:
  image: warking/taiga-front
  links:
    - taigaback
  volumes_from:
    - data
  ports:
    - 0.0.0.0:80:80

Tag summary

Content type

Image

Digest

Size

99.5 MB

Last updated

about 9 years ago

docker pull warking/taiga-front