Skip to content
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.

blacklabelops-legacy/crucible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockerized Atlassian Crucible

"Review code, discuss changes, share knowledge, and identify defects across SVN, Git, Mercurial, CVS, and Perforce." - [Source]

Supported tags and respective Dockerfile links

Product Version Tags Dockerfile
Crucible 4.4.1 4.4.1, latest Dockerfile

Related Images

You may also like:

Make It Short

Docker-CLI:

Just type and follow the manual installation procedure in your browser:

$ docker run -d -p 8060:8060 --name crucible blacklabelops/crucible

Point your browser to http://yourdockerhost:8060

Setup

  1. Start database server for Crucible.
  2. Start Crucible.
  3. Manual Crucible setup.

Firstly, start the database server for Crucible:

Note: Change Password!

$ docker run --name postgres_crucible -d \
    -e 'POSTGRES_DB=crucibledb' \
    -e 'POSTGRES_USER=crucibledb' \
    -e 'POSTGRES_PASSWORD=jellyfish' \
    -e 'POSTGRES_ENCODING=UTF8' \
    blacklabelops/postgres

Secondly, start Crucible:

$ docker run -d --name crucible \
	  --link postgres_crucible:postgres_crucible \
	  -p 8060:8060 blacklabelops/crucible

Starts Crowd and links it to the postgresql instances. JDBC URL: jdbc:postgresql://postgres_crucible/crucibledb

Thirdly, configure your Crucible yourself and fill it with a test license.

Point your browser to http://yourdockerhost:8060

  1. Create and enter license information
  2. Fill out the rest of the installation procedure.
  3. Login to the application and enter the administration area.
  4. Go to System Settings -> Database
  5. Click Edit and fill out the form:
  • Type: PostgreSQL
  • Driver Location: Bundled
  • URL: jdbc:postgresql://postgres_crucible:5432/crucibledb
  • User Name: crucibledb
  • Password: jellyfish
  • Minimum Pool Connections: 5
  • Maximum Pool Connections: 20
  • Parameters:
  1. Press Test connectionand then Save & Migrate

Enjoy Crucible!

Vagrant

First install:

Vagrant is fabulous tool for pulling and spinning up virtual machines like docker with containers. I can configure my development and test environment and simply pull it online. And so can you! Install Vagrant and Virtualbox and spin it up. Change into the project folder and build the project on the spot!

$ vagrant up
$ vagrant ssh
[vagrant@localhost ~]$ cd /vagrant
[vagrant@localhost ~]$ docker-compose up

Crucible will be available on http://localhost:8080 on the host machine.

References

About

Dockerized Atlassian Crucible

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages