From fdd9fff1440b45949ae853df9f944102a5c381dc Mon Sep 17 00:00:00 2001 From: kev Date: Fri, 1 Nov 2019 17:12:41 +0800 Subject: [PATCH] add confluence --- README.md | 11 +++++++---- confluence/README.md | 15 +++++++++++++++ confluence/docker-compose.yml | 33 +++++++++++++++++++++++++++++++++ jira/docker-compose.yml | 2 ++ 4 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 confluence/README.md create mode 100644 confluence/docker-compose.yml diff --git a/README.md b/README.md index 11fd41c..54c92c5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/confluence/README.md b/confluence/README.md new file mode 100644 index 0000000..a46b6da --- /dev/null +++ b/confluence/README.md @@ -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/ diff --git a/confluence/docker-compose.yml b/confluence/docker-compose.yml new file mode 100644 index 0000000..1ae367c --- /dev/null +++ b/confluence/docker-compose.yml @@ -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 diff --git a/jira/docker-compose.yml b/jira/docker-compose.yml index 148cffe..0d0e98f 100644 --- a/jira/docker-compose.yml +++ b/jira/docker-compose.yml @@ -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: