Run Atlassian Data Center Jira, Confluence, Bitbucket in docker

  Рет қаралды 4,384

Alexey Matveev

Alexey Matveev

Күн бұрын

In this video I will show you how to put up Atlassian Data Center Jira, Confluence and Bitbucket in docker for development purposes.
Here are the links to articles:
matveev.life/2...
matveev.life/2...
matveev.life/2...

Пікірлер: 9
@assaado
@assaado 2 жыл бұрын
Worked like a charm! I'm having a hard time getting haproxy load balancing between the different jira nodes
@carlosalva4332
@carlosalva4332 Жыл бұрын
is ti for free? I read, if you shut it down you will lost all data, is that true?
@andrek.2782
@andrek.2782 2 жыл бұрын
please share your yml files (without some login)
@alexeymatveev7565
@alexeymatveev7565 2 жыл бұрын
Hello! I do not pay for the site anymore that is why I believe they cancelled anonymous access. You can find same articles In atlassian community. Try to search the same name and add atlassian community in Google.
@bukrek12
@bukrek12 2 жыл бұрын
0.25 is your real time
@baseptr
@baseptr Жыл бұрын
please copy past yaml file here
@alexeymatveev7565
@alexeymatveev7565 Жыл бұрын
Here is the yml file for Jira: version: '3' services: jira_node_1: depends_on: - postgresql image: atlassian/jira-software:latest networks: - jiranet volumes: - /Users/alexm/projects/prometheus/shared:/var/atlassian/application-data/jira/shared ports: - '8080:8080' - '8000:8000' environment: - 'ATL_JDBC_URL=jdbc:postgresql://postgresql:5432/jiradb' - 'ATL_JDBC_USER=jira' - 'ATL_JDBC_PASSWORD=jellyfish' - 'ATL_DB_DRIVER=org.postgresql.Driver' - 'ATL_DB_TYPE=postgres72' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000"' - 'CLUSTERED=true' - 'JIRA_NODE_ID=node_1' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" jira_node_2: depends_on: - postgresql image: atlassian/jira-software:latest networks: - jiranet volumes: - /Users/alexm/projects/prometheus/shared:/var/atlassian/application-data/jira/shared ports: - '8081:8080' - '8001:8000' environment: - 'ATL_JDBC_URL=jdbc:postgresql://postgresql:5432/jiradb' - 'ATL_JDBC_USER=jira' - 'ATL_JDBC_PASSWORD=jellyfish' - 'ATL_DB_DRIVER=org.postgresql.Driver' - 'ATL_DB_TYPE=postgres72' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000"' - 'CLUSTERED=true' - 'JIRA_NODE_ID=node_2' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" postgresql: image: postgres:9.5-alpine networks: - jiranet volumes: - postgresqldata:/var/lib/postgresql/data ports: - '5432:5432' environment: - 'POSTGRES_USER=jira' # CHANGE THE PASSWORD! - 'POSTGRES_PASSWORD=jellyfish' - 'POSTGRES_DB=jiradb' - 'POSTGRES_ENCODING=UNICODE' - 'POSTGRES_COLLATE=C' - 'POSTGRES_COLLATE_TYPE=C' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" volumes: postgresqldata: external: false networks: jiranet: driver: bridge
@alexeymatveev7565
@alexeymatveev7565 Жыл бұрын
Confluence: version: '3' services: confluence_node_1: depends_on: - postgresql image: atlassian/confluence:latest networks: confnet: ipv4_address: 192.168.0.3 volumes: - /Users/alexm/projects/prometheus/confluence/shared:/var/atlassian/application-data/confluence/shared-home ports: - '8090:8090' - '8000:5005' environment: - 'ATL_JDBC_URL=jdbc:postgresql://postgresql:5432/confluencedb' - 'ATL_JDBC_USER=confluence' - 'ATL_JDBC_PASSWORD=jellyfish' - 'ATL_DB_DRIVER=org.postgresql.Driver' - 'ATL_DB_TYPE=postgresql' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"' - 'ATL_CLUSTER_NAME=confluence_cluster' - 'ATL_PRODUCT_HOME_SHARED=/var/atlassian/application-data/confluence/shared-home' - 'ATL_CLUSTER=true' - 'ATL_CLUSTER_TYPE=multicast' - 'ATL_CLUSTER_TTL=1' - 'ATL_CLUSTER_ADDRESS=235.113.127.226' - 'ATL_CLUSTER_INTERFACE=eth0' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" confluence_node_2: depends_on: - postgresql image: atlassian/confluence:latest networks: confnet: ipv4_address: 192.168.0.4 volumes: - /Users/alexm/projects/prometheus/confluence/shared:/var/atlassian/application-data/confluence/shared-home ports: - '8091:8090' - '8001:5005' environment: - 'ATL_JDBC_URL=jdbc:postgresql://postgresql:5432/confluencedb' - 'ATL_JDBC_USER=confluence' - 'ATL_JDBC_PASSWORD=jellyfish' - 'ATL_DB_DRIVER=org.postgresql.Driver' - 'ATL_DB_TYPE=postgresql' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"' - 'ATL_CLUSTER_NAME=confluence_cluster' - 'ATL_CLUSTER=true' - 'ATL_PRODUCT_HOME_SHARED=/var/atlassian/application-data/confluence/shared-home' - 'ATL_CLUSTER_TYPE=multicast' - 'ATL_CLUSTER_TTL=1' - 'ATL_CLUSTER_ADDRESS=235.113.127.226' - 'ATL_CLUSTER_INTERFACE=eth0' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" postgresql: image: postgres:9.5-alpine networks: confnet: ipv4_address: 192.168.0.2 volumes: - postgresqldata:/var/lib/postgresql/data ports: - '5432:5432' environment: - 'POSTGRES_USER=confluence' # CHANGE THE PASSWORD! - 'POSTGRES_PASSWORD=jellyfish' - 'POSTGRES_DB=confluencedb' - 'POSTGRES_ENCODING=UNICODE' - 'POSTGRES_COLLATE=C' - 'POSTGRES_COLLATE_TYPE=C' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" volumes: postgresqldata: external: false networks: confnet: driver: bridge ipam: driver: default config: - subnet: "192.168.0.0/24" gateway: "192.168.0.1"
@alexeymatveev7565
@alexeymatveev7565 Жыл бұрын
Bitbucket version: '3' services: bb_node_1: depends_on: - postgresql image: atlassian/bitbucket:latest networks: - bbnet volumes: - /Users/alexm/projects/prometheus/bitbucket/shared:/var/atlassian/application-data/bitbucket/shared ports: - '7990:7990' - '8000:5005' environment: - 'JDBC_URL=jdbc:postgresql://postgresql:5432/bbdb' - 'JDBC_USER=bb' - 'JDBC_PASSWORD=jellyfish' - 'JDBC_DRIVER=org.postgresql.Driver' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005' - 'HAZELCAST_GROUP_NAME=bb_group' - 'HAZELCAST_GROUP_PASSWORD=1234' - 'HAZELCAST_NETWORK_MULTICAST=true' bb_node_2: depends_on: - postgresql image: atlassian/bitbucket:latest networks: - bbnet volumes: - /Users/alexm/projects/prometheus/bitbucket/shared:/var/atlassian/application-data/bitbucket/shared ports: - '7991:7990' - '8001:5005' environment: - 'JDBC_URL=jdbc:postgresql://postgresql:5432/bbdb' - 'JDBC_USER=bb' - 'JDBC_PASSWORD=jellyfish' - 'JDBC_DRIVER=org.postgresql.Driver' - 'JVM_MINIMUM_MEMORY=2048m' - 'JVM_MAXIMUM_MEMORY=4096m' - 'JVM_SUPPORT_RECOMMENDED_ARGS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005' - 'HAZELCAST_GROUP_NAME=bb_group' - 'HAZELCAST_GROUP_PASSWORD=1234' - 'HAZELCAST_NETWORK_MULTICAST=true' postgresql: image: postgres:9.5-alpine networks: - bbnet #volumes: # - postgresqldata:/var/lib/postgresql/data ports: - '5432:5432' environment: - 'POSTGRES_USER=bb' # CHANGE THE PASSWORD! - 'POSTGRES_PASSWORD=jellyfish' - 'POSTGRES_DB=bbdb' - 'POSTGRES_ENCODING=UNICODE' - 'POSTGRES_COLLATE=C' - 'POSTGRES_COLLATE_TYPE=C' logging: # limit logs retained on host to 25MB driver: "json-file" options: max-size: "500k" max-file: "50" volumes: postgresqldata: external: false networks: bbnet: driver: bridge
Jira в Docker
35:38
Pavel Zloi aka EvilFreelancer
Рет қаралды 3,1 М.
Watermelon magic box! #shorts by Leisi Crazy
00:20
Leisi Crazy
Рет қаралды 77 МЛН
My Daughter's Dumplings Are Filled With Coins #funny #cute #comedy
00:18
Funny daughter's daily life
Рет қаралды 17 МЛН
How to deploy Atlassian Data Center
6:34
Atlassian
Рет қаралды 9 М.
Docker in 100 Seconds
2:07
Fireship
Рет қаралды 956 М.
Don't Create a Jira Project Without Watching This First! | Atlassian Jira
10:02
Apetech Tech Tutorials
Рет қаралды 12 М.
Google Data Center 360° Tour
8:29
Google Cloud Tech
Рет қаралды 5 МЛН
Jamming with Assets in Jira Service Management
56:18
Atlassian
Рет қаралды 8 М.
Docker install WordPress, Confluence and Jira
35:28
Viktor Kjartansson
Рет қаралды 3,5 М.
Watermelon magic box! #shorts by Leisi Crazy
00:20
Leisi Crazy
Рет қаралды 77 МЛН