add confluence

This commit is contained in:
kev 2019-11-01 17:12:41 +08:00
parent 81b90eb314
commit fdd9fff144
4 changed files with 57 additions and 4 deletions

View File

@ -285,7 +285,6 @@ A collection of delicious docker recipes.
- [ ] python
- [x] gogs/gogs :cn:
- [x] haproxy
- [x] teamatldocker/jira
- [x] jmxtrans/jmxtrans
- [x] wurstmeister/kafka
- [x] netdata/netdata
@ -315,12 +314,16 @@ A collection of delicious docker recipes.
- [x] rocket.chat
- [x] rundeck/rundeck
- [x] wonderfall/searx
- [ ] selenium
- [ ] hub
- [ ] node-firefox
- [x] selenium
- [x] hub
- [x] node-chrome
- [x] node-firefox
- [x] standalone-firefox
- [x] sentry
- [x] scrapinghub/splash
- [x] teamatldocker
- [x] confluence
- [x] jira
- [x] amancevice/superset
- [x] v2ray/official :cn:
- [x] centurylink/watchtower

15
confluence/README.md Normal file
View File

@ -0,0 +1,15 @@
confluence
==========
[Confluence][1] is where you create, organize and discuss work with your team.
```bash
$ mkdir -p data/confluence
$ chown 1000:1000 data/confluence
$ docker-compose up -d
$ curl http://localhost:8090/
```
- https://confluence.atlassian.com/doc/from-confluence-evaluation-through-to-production-installation-345211000.html
[1]: https://support.atlassian.com/confluence-server/

View File

@ -0,0 +1,33 @@
version: "3.7"
services:
confluence:
image: teamatldocker/confluence:7.0.4
ports:
- "8090:8090"
volumes:
- ./data/confluence:/var/atlassian/confluence
environment:
- DOCKER_WAIT_HOST=postgres
- DOCKER_WAIT_PORT=5432
- CONFLUENCE_PROXY_NAME=confluence.example.com
- CONFLUENCE_PROXY_PORT=443
- CONFLUENCE_PROXY_SCHEME=https
- CATALINA_PARAMETER1=-Xms
- CATALINA_PARAMETER_VALUE1=2g
- CATALINA_PARAMETER2=-Xmx
- CATALINA_PARAMETER_VALUE2=4g
depends_on:
- postgres
restart: unless-stopped
postgres:
image: postgres:12-alpine
volumes:
- ./data/postgres:/var/lib/postgresql/data:Z
environment:
- POSTGRES_DB=confluence
- POSTGRES_USER=confluence
- POSTGRES_PASSWORD=confluence
restart: unless-stopped

View File

@ -18,6 +18,8 @@ services:
- JIRA_PROXY_SCHEME=https
- SETENV_JVM_MINIMUM_MEMORY=4g
- SETENV_JVM_MAXIMUM_MEMORY=8g
depends_on:
- postgres
restart: unless-stopped
postgres: