Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eficode/docker-atlassian-sandbox
https://github.com/eficode/docker-atlassian-sandbox
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eficode/docker-atlassian-sandbox
- Owner: eficode
- Created: 2023-03-10T12:21:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-28T09:42:30.000Z (16 days ago)
- Last Synced: 2024-10-28T12:47:47.303Z (15 days ago)
- Size: 16.6 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-atlassian-sandbox
Docker compose script created in order to easily create docker containers with the following atlassian products:
* Jira
* Confluence
* BitbucketEach container gets its own Postgress Database, that each application is dependent on. That means that you don't have to start the databases individually.
# Usage
You can start up all 3 applications by writing:
```
docker-compose up -d
```
You can also start up single applications by specifying the application afterwards:
```
docker-compose up -d confluence
```If you want to stop all applications, you can write:
```
docker-compose down
```
# To access Atlassian applications
Applications can be reached by localhost:
```
localhost:8080 (Jira)
localhost:8090 (Confluence)
localhost:7990 (Bitbucket)
```
These can be changed in the file if multiple versions are intended to be run at the same time.# Directory Structure
```
.
├── bitbucket # data directory for bitbucket
├── bitbucket_pgdata # data directory for bitbucket postgresql database
├── confluence # data directory for confluence
├── confluence_pgdata # data directory for confluence postgresql database
├── docker-compose.yml # docker-compose file
├── jira # data directory for jira
├── jira_pgdata # data directory for jira postgresql database
└── README.md # this file
```