You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
898 B
39 lines
898 B
version: "3"
|
|
|
|
volumes:
|
|
jira_instance:
|
|
external: false
|
|
|
|
services:
|
|
jira_instance:
|
|
image: atlassian/jira-software:8.12.2
|
|
container_name: jira_instance
|
|
hostname: jira_instance
|
|
|
|
depends_on:
|
|
- jira_db
|
|
volumes:
|
|
- jira_instance:/var/atlassian/jira
|
|
ports:
|
|
- '3010:8080'
|
|
env_file: env/jira_instance.env
|
|
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|
|
jira_db:
|
|
image: postgres:9.5-alpine
|
|
container_name: jira_db
|
|
hostname: jira_db
|
|
|
|
volumes:
|
|
- ./etc/jira_db/var/lib/postgresql/data:/var/lib/postgresql/data
|
|
env_file: env/jira_db.env
|
|
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|