Coder Social home page Coder Social logo

atlassian's Introduction

Atlassian services

Version: 1.0.1

This repository holds a dockerized orchestration of the Atlassian web apps Jira, Stash and Confluence. To simplify the usermangement Crowd is also included. For more information on the apps please refere to the offical Atlassian websites:

Prerequisites

In order to run this apps you need to make sure you're running at least docker 1.6.0 and docker-compose 1.2.0. For detailed installation instructions please refere to the origin websites:

Start the images

You can start all images as a orchestration from the root folder. To only use a particularly image change into a subfolder. You better use the docker-compose-dev.yml file if you're not in production. Here are some examples:

# build all the images
$ docker-compose build

# build only the stash image
$ cd atlassian-stash && docker-compose build

# start all the docker images (in development mode)
$ docker-compose -f docker-compose-dev.yml dev

# start the stash image (in production mode)
$ cd atlassian-stash && docker-compose -f docker-compose-dev.yml up

# inspect the logs
$ docker-compose logs

If you deploy the apps for the first time you may need to restore the databases from a backup and adapt the database connection settings!

Develop Mode / Debug an image

# use the development compose file
$ docker-compose -f docker-compose-dev.yml up

# execute a bash shell inside a running container
$ docker exec -it atlassian_stash_1 bash

# add the following entrys to your `/etc/hosts`
$ boot2docker ip -> 192.168.59.103
$ cat /etc/hosts
192.168.59.103  boot2docker.local boot2docker
192.168.59.103  stash.boot2docker.local stash
192.168.59.103  jira.boot2docker.local jira
192.168.59.103  confluence.boot2docker.local confluence
192.168.59.103  crowd.boot2docker.local crowd
192.168.59.103  bamboo.boot2docker.local bamboo

First run

If you start this orchestration for the first time, a handy feature is to import your old data. If you're e.g. moving everything to another server you can put your database backups into the tmp folder and the db initscript will pick them up automagically on the first run.

# move your jira db backup file to tmp (filename is important).
$ mv jira_backup.sql tmp/jira.dump

# unpack your jira-home backup archive
$ tar xzf jira-home.tar.gz --strip=1 -C atlassian-jira/home

Backup the home folders

$ mkdir -p backup/$(date +%F)
$ for i in crowd confluence stash jira; do \
  tar czf backup/$(date +%F)/$i-home.tgz atlassian-$i/home; done

Backup the PostgreSQL data

# backup the confluence database
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_dump -U confluence -h "$DB_PORT_5432_TCP_ADDR" \
    -w confluence > /tmp/confluence.dump'

# backup the stash database
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_dump -U stash -h "$DB_PORT_5432_TCP_ADDR" \
    -w stash > /tmp/stash.dump'

# backup the jira database
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_dump -U jira -h "$DB_PORT_5432_TCP_ADDR" \
    -w jira > /tmp/jira.dump'

# backup the crowd database
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_dump -U crowd -h "$DB_PORT_5432_TCP_ADDR" \
    -w crowd > /tmp/crowd.dump'

# backup the bamboo database
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_dump -U bamboo -h "$DB_PORT_5432_TCP_ADDR" \
    -w crowd > /tmp/bamboo.dump'

Restore the PostgreSQL data

# restore the confluence database backup
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_restore -U confluence -h "$DB_PORT_5432_TCP_ADDR" \
    -n public -w -d confluence /tmp/confluence.dump'

# restore the stash database backup
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_restore -U stash -h "$DB_PORT_5432_TCP_ADDR" \
    -n public -w -d stash /tmp/stash.dump'

# restore the jira database backup
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_restore -U jira -h "$DB_PORT_5432_TCP_ADDR" \
    -n public -w -d jira /tmp/jira.dump'

# restore the crowd database backup
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_restore -U crowd -h "$DB_PORT_5432_TCP_ADDR" \
    -n public -w -d crowd /tmp/crowd.dump'

# restore the bamboo database backup
$ docker run -it --rm --link atlassian_database_1:db -v $(pwd)/tmp:/tmp \
    postgres sh -c 'pg_restore -U bamboo -h "$DB_PORT_5432_TCP_ADDR" \
    -n public -w -d crowd /tmp/bamboo.dump'

atlassian's People

Contributors

malagant avatar mhubig avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.