You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docker.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
Setup following a [tutorial from coffeetime.solutions](http://coffeetime.solutions/run-atlassian-jira-and-confluence-with-postgresql-on-docker/#Overview_of_series_How_to_run_Jira_and_Confluence_behind_NGINX_reverse_proxy_on_Docker):
2
2
3
3
```bash
4
-
docker run --name=confluence -d -p 8090:8090 -p 8091:8091 atlassian/confluence-server:latest
5
4
docker run --name postgres -e POSTGRES_PASSWORD=mysecretpassword -d postgres
5
+
docker run --name=confluence -d -p 8090:8090 -p 8091:8091 atlassian/confluence-server:latest
6
6
```
7
7
8
8
Start confluence setup and configure Postgres:
9
-
- jdbc:postgresql://192.168.65.2:5432/postgres (`docker inspect postgres` to get ip address)
9
+
- jdbc:postgresql://192.168.65.2:5432/postgres (`docker inspect postgres | grep IP` to get ip address)
10
+
- in case of IP change search and replace in `/var/atlassian/application-data/confluence.cfg.xml`
0 commit comments