-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from baloise/main
Version 7.0.6
- Loading branch information
Showing
36 changed files
with
1,387 additions
and
1,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
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): | ||
|
||
```bash | ||
mkdir -p $HOME/docker/volumes/postgres | ||
mkdir -p $HOME/docker/volumes/confluence | ||
docker run --name postgres \ | ||
-v $HOME/docker/volumes/postgres:/var/lib/postgresql/data \ | ||
-e POSTGRES_PASSWORD=mysecretpassword \ | ||
-d postgres | ||
docker run --name=confluence \ | ||
-v $HOME/docker/volumes/confluence:/var/atlassian/application-data/confluence \ | ||
-d \ | ||
-p 8090:8090 \ | ||
-p 8091:8091 \ | ||
-p 5005:5005 \ | ||
-e JVM_SUPPORT_RECOMMENDED_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005" \ | ||
atlassian/confluence-server:latest | ||
docker inspect postgres | grep IPAddress # get the IP address of the postgres container | ||
``` | ||
|
||
Start confluence setup and configure Postgres: | ||
- jdbc:postgresql://192.168.65.2:5432/postgres (`docker inspect postgres | grep IP` to get ip address) | ||
- in case of IP change search and replace in `/var/atlassian/application-data/confluence.cfg.xml` | ||
- user: postgres | ||
- password: mysecretpassword (defined above) | ||
|
||
![](img/db.png) | ||
|
||
- Skip tutorial | ||
- Create new space "Test" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
config.stopBubbling = true | ||
lombok.addLombokGeneratedAnnotation = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.