Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Devops Roadmap | 4,207 | a month ago | 4 | apache-2.0 | ||||||
DevOps Roadmap for 2023. with learning resources | ||||||||||
Comply | 860 | 8 months ago | 80 | November 05, 2021 | 22 | apache-2.0 | Go | |||
Compliance automation framework, focused on SOC2 | ||||||||||
Docker Atlassian Jira | 599 | 4 days ago | 29 | mit | Ruby | |||||
Atlassian JIRA Core wrapped in a Docker image | ||||||||||
Jira | 402 | 6 months ago | 13 | mit | Shell | |||||
Dockerized Atlassian Jira | ||||||||||
Docker Atlassian Confluence | 359 | 3 days ago | 31 | mit | Ruby | |||||
Atlassian Confluence wrapped in a Docker image | ||||||||||
Docker Atlassian Jira Software | 260 | 4 days ago | 41 | mit | Ruby | |||||
Atlassian JIRA Software wrapped in a Docker image | ||||||||||
Jira Agile Metrics | 220 | 21 days ago | 21 | mit | Python | |||||
Agile metrics and charts calculated from JIRA | ||||||||||
Jira Dependency Graph | 219 | a year ago | 7 | mit | Python | |||||
Graph visualizer for JIRA tickets' dependencies | ||||||||||
Postee | 172 | a month ago | 68 | September 26, 2022 | 30 | mit | Go | |||
Simple message routing system that receives input messages through a webhook interface and can enforce actions using predefined outputs via integrations. | ||||||||||
Jira | 130 | 4 days ago | 9 | Dockerfile | ||||||
The simplest docker file of JIRA. Support v9.7.0(latest) and v9.4.4(lts) |
It's Atlassian docker compose file, to run Atlassian products with docker on one single machine.
jira.example.com wiki.example.com bitbucket.example.com
+ + +
| | |
+----------------------------------------+
|
v
Nginx
+
+-----------------------------------------+
| | |
v v v
Atlassian Jira Atlassian Confluence Atlassian Bitbucket
[host:jira:8080] [host:confluence:8090] [host:bitbucket:7990]
+ + |
| | |
+-----------------------------------------+
|
v
Postgres
[host:database:5432]
+
|
+------------------------------------------+
| | |
v v v
[db:jira] [db:wiki] [db:bitbucket]
Atlassian supported products:
7.9.2
6.9.0
5.10.1
With:
9.4
latest
Requirements:
Docker image source files:
How to use:
Clone the atlassian:
$ git clone https://github.com/omidraha/atlassian
Set environment variables:
$ export DOMAIN=example.com
Run docker compose:
$ docker-compose -p atlassian up
Set DNS
according to the above DOMAIN
value, on somewhere that you want to connect to host of docker-compose
:
$ vim /etc/hosts
127.0.0.1 jira.example.com www.jira.example.com
127.0.0.1 wiki.example.com www.wiki.example.com
127.0.0.1 bitbucket.example.com www.bitbucket.example.com
Replace 127.0.0.1
with IP of host that docker-compose
command run on it.
Create Databases:
$ docker exec -it atlassian_database_1 psql -U postgres
postgres=# CREATE DATABASE jira;
postgres=# CREATE DATABASE wiki;
postgres=# CREATE DATABASE bitbucket;
postgres=# \l
postgres-# \q
Browse Atlassian products:
```
http://jira.example.com
http://wiki.example.com
http://bitbucket.example.com
```
Notes:
Data persisted on the named volumes, to see them:
$ docker volume ls
local atlassian_bitbucket-data
local atlassian_confluence-data
local atlassian_jira-data
local atlassian_database-data