Install Jira, Confluence and Bitbucket with Docker Compose
Github Source 1. Create network 1 . Create network for atlassian
1 2 3 |
$ docker network create --driver bridge network-atlassian || true $ docker network inspect network-atlassian |
2. Install Nginx 1 . Create volume for nginx
1 2 3 4 5 6 |
$ docker volume create nginxdata $ docker volume inspect nginxdata $ docker volume create nginxwww $ docker volume inspect nginxwww |
You will find nginxdata is located into: /var/lib/docker/volumes/nginxdata/_data /var/lib/docker/volumes/nginxwww/_data Copy opt/nginx/docker-compose.yml to...