https://github.com/attron/atlassian-docker
atlassian jira + confluence inside docker container
https://github.com/attron/atlassian-docker
Last synced: 5 months ago
JSON representation
atlassian jira + confluence inside docker container
- Host: GitHub
- URL: https://github.com/attron/atlassian-docker
- Owner: ATTron
- Created: 2019-09-12T20:31:36.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-15T18:25:47.000Z (over 5 years ago)
- Last Synced: 2025-04-06T21:42:22.104Z (about 1 year ago)
- Language: Makefile
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atlassian Docker Suite
Confluence + Jira running inside docker containers with postgresql
## USAGE
Use the Makefile to navigate
```
:$make
#-------------------------------------------------------------------------------------------------
# Makefile Help |
#-------------------------------------------------------------------------------------------------
# This Makefile can be used to run, build, and tear down the atlassian suite (Confluence & Jira) |
#-------------------------------------------------------------------------------------------------
#-target-----------------------description--------------------------------------------------------
build-all Build postgres, jira, and confluence
build-confluence Build confluence docker image
build-jira Build jira docker image
build-postgres Build postgres docker image
confluence Run the confluence docker image
down-all Bring down postgres, jira, and confluence
down-confluence Bring down confluence container
down-jira Bring down jira container
down-postgres Bring down postgres container
help That's me!
jira Run the jira docker image
postgres Run the postgres docker image
run-all Run all containers
```
BUILD THE DEPENDENCIES FIRST
``` make deps ```
IT IS REQUIRED TO HAVE POSTGRES RUNNING IN ORDER FOR CONFLUENCE + JIRA TO FUNCTION AS EXPECTED
``` make postgres ```
THEN START YOUR OTHER SERVICES
``` make jira ```
You can also run everything together via
``` make run-all ```