Skip to content
This repository has been archived by the owner on Jun 3, 2023. It is now read-only.

Commit

Permalink
packaged httpd configuration into container to make it easy to distri…
Browse files Browse the repository at this point in the history
…bute
  • Loading branch information
sloppycoder committed Jan 28, 2015
1 parent f636529 commit c4f3dbc
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 2,001 deletions.
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,29 @@ These containers are intended to run behind one BASE_URL served Apache httpd.

### TL;DR

Clone this repo first, then use ``` ./build_all.sh ``` to build all images. To skip build and run everything directly from docker hub,

One liner to get everything up and running

```
BASE_URL=http://127.0.0.1:8000 ./run.sh all
export BASE_URL=http://127.0.0.1:8000
curl -sL https://raw.githubusercontent.com/sloppycoder/atlassian-dockers/master/run.sh | bash -
```

The point your browser and start apply license and configuration to applications.

JIRA: BASE_URL/jira
Stash: BASE_URL/stash
Fisheye: BASE_URL/fisheye
Bamboo: BASE_URL/bamboo
To build the images locally, clone this repo first, then

```
./build.sh
BASE_URL=http://127.0.0.1:8000 ./run.sh
```

Then point your browser at the URL below to install license and configuation for each applicaiton:

| JIRA | BASE_URL/jira |
| Stash | BASE_URL/stash |
| Fisheye | BASE_URL/fisheye |
| Bamboo | BASE_URL/bamboo |


### TO DO
1. test more installation scenarios.
7 changes: 7 additions & 0 deletions atl-web/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM httpd:2.4
MAINTAINER Li Lin <[email protected]>

RUN mv /usr/local/apache2/conf/httpd.conf httpd.conf.orig
ADD httpd.conf /usr/local/apache2/conf/httpd.conf
ADD proxy-atl.conf /usr/local/apache2/conf/extra/proxy-atl.conf

2 changes: 2 additions & 0 deletions atl-web/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
TAG="sloppycoder/atl-web"
docker build --rm --tag ${TAG}:latest .
File renamed without changes.
File renamed without changes.
6 changes: 5 additions & 1 deletion build_all.sh → build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cd java-base
#./build.sh
./build.sh
cd ..

cd atl-jira
Expand All @@ -18,3 +18,7 @@ cd atl-bamboo
./build.sh
cd ..

cd atl-web
./build.sh
cd ..

Loading

0 comments on commit c4f3dbc

Please sign in to comment.