add youtrack and xwiki
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-02-26 12:39:38 +01:00
parent b8c39673e3
commit 94f1478650

View File

@ -9,6 +9,10 @@ networks:
external: false external: false
gitea: gitea:
external: false external: false
youtrack:
external: false
xwiki:
external: false
services: services:
smtp: smtp:
@ -211,3 +215,43 @@ services:
depends_on: depends_on:
- gitea-db - gitea-db
- smtp - smtp
youtrack:
image: jetbrains/youtrack:2019.3.65503
restart: always
networks:
- youtrack
ports:
- "127.0.0.1:8069:8080"
volumes:
- ./youtrack/data:/opt/youtrack/data
- ./youtrack/conf:/opt/youtrack/conf
- ./youtrack/logs:/opt/youtrack/logs
- ./youtrack/backups:/opt/youtrack/backups
xwiki:
image: xwiki:stable-postgres-tomcat
depends_on:
- xwiki-db
networks:
- xwiki
volumes:
- ./xwiki:/usr/local/xwiki
ports:
- "127.0.0.1:6980:8080"
environment:
- DB_USER=xwiki
- DB_PASSWORD=xwiki
- DB_DATABASE=xwiki
- DB_HOST=xwiki-db
xwiki-db:
image: postgres:12
volumes:
- ./postgres-xwiki:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=xwiki
- POSTGRES_USER=xwiki
- POSTGRES_DB=xwiki
networks:
- xwiki