Add taiga-front to docker-compose services

This commit is contained in:
Yamila Moreno 2020-09-16 16:11:45 +02:00
parent a29d2ed1f5
commit 5654077215
2 changed files with 38 additions and 0 deletions

View File

@ -7,6 +7,8 @@ services:
POSTGRES_DB: taiga
POSTGRES_USER: taiga
POSTGRES_PASSWORD: taiga
ports:
- "5432:5432"
networks:
- backend
volumes:
@ -26,5 +28,15 @@ services:
depends_on:
- taiga-db
taiga-front:
image: ghcr.io/taigaio/taiga-front/taiga-front:5.5
ports:
- "9000:80"
volumes:
- ./taiga-front/conf/conf.json:/usr/share/nginx/html/conf.json
networks:
- frontend
networks:
backend:
frontend:

View File

@ -0,0 +1,26 @@
{
"api": "http://localhost:8000/api/v1/",
"eventsUrl": null,
"eventsMaxMissedHeartbeats": 5,
"eventsHeartbeatIntervalTime": 60000,
"eventsReconnectTryInterval": 10000,
"debug": true,
"debugInfo": false,
"defaultLanguage": "en",
"themes": ["taiga"],
"defaultTheme": "taiga",
"defaultLoginEnabled": true,
"publicRegisterEnabled": true,
"feedbackEnabled": true,
"supportUrl": "https://tree.taiga.io/support/",
"privacyPolicyUrl": null,
"termsOfServiceUrl": null,
"GDPRUrl": null,
"maxUploadFileSize": null,
"contribPlugins": [],
"tagManager": { "accountId": null },
"tribeHost": null,
"importers": [],
"gravatar": false,
"rtlLanguages": ["fa"]
}