add youtrack and xwiki
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b8c39673e3
commit
94f1478650
@ -9,6 +9,10 @@ networks:
|
||||
external: false
|
||||
gitea:
|
||||
external: false
|
||||
youtrack:
|
||||
external: false
|
||||
xwiki:
|
||||
external: false
|
||||
|
||||
services:
|
||||
smtp:
|
||||
@ -211,3 +215,43 @@ services:
|
||||
depends_on:
|
||||
- gitea-db
|
||||
- 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
|
Reference in New Issue
Block a user