https://github.com/sloppycoder/atlassian-dockers
https://github.com/sloppycoder/atlassian-dockers
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/atlassian-dockers
- Owner: sloppycoder
- License: other
- Created: 2015-01-26T08:33:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-11-13T02:41:52.000Z (over 9 years ago)
- Last Synced: 2023-02-27T23:02:08.119Z (over 3 years ago)
- Language: Shell
- Size: 81.1 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker containers for Atlassian JIRA, Stash and Jenkins
These containers are intended to run behind BASE_URL served Apache httpd.
### TL;DR
One liner to get everything up and running,
```
#
# on a machine that has docker installed
#
# this the URL where application can be accessed from
export BASE_URL=http://127.0.0.1
# create data directory to store application state
export DATA_DIR=/data # or your own directory name
mkdir -p $DATA_DIR/postgres
mkdir -p $DATA_DIR/atlassain-home
mkdir -p $DATA_DIR/jenkins_home
sh run.sh
```
To build the images locally, clone this repo first, then
```
./build.sh
```
Then point your browser at the URL below to install license and configuation for each applicaiton:
| Application | URL |
|--------------------------------------------------|---------------------|
| JIRA | BASE_URL/jira |
| Stash | BASE_URL/stash |
| Jenkins | BASE_URL/jenkins |