I think there are issues with the latest version of docker/compose.
drewbookpro:atlassian andrewkhoury$ docker --version
Docker version 1.10.2, build c3959b1
drewbookpro:atlassian andrewkhoury$ docker-compose --version
docker-compose version 1.6.0, build d99cad6
drewbookpro:atlassian andrewkhoury$ docker-compose build
database uses an image, skipping
crowd uses an image, skipping
jira uses an image, skipping
stash uses an image, skipping
confluence uses an image, skipping
bamboo uses an image, skipping
nginx uses an image, skipping
drewbookpro:atlassian andrewkhoury$ docker-compose up
atlassian_database_1 is up-to-date
atlassian_crowd_1 is up-to-date
atlassian_jira_1 is up-to-date
atlassian_stash_1 is up-to-date
atlassian_confluence_1 is up-to-date
atlassian_bamboo_1 is up-to-date
Creating atlassian_nginx_1
ERROR: readdirent: not a directory
Also volume mounts can't have / so I needed to modify them and change their locations to get it to work.
I think there are issues with the latest version of docker/compose.
drewbookpro:atlassian andrewkhoury$ docker --version Docker version 1.10.2, build c3959b1 drewbookpro:atlassian andrewkhoury$ docker-compose --version docker-compose version 1.6.0, build d99cad6
drewbookpro:atlassian andrewkhoury$ docker-compose build database uses an image, skipping crowd uses an image, skipping jira uses an image, skipping stash uses an image, skipping confluence uses an image, skipping bamboo uses an image, skipping nginx uses an image, skipping
drewbookpro:atlassian andrewkhoury$ docker-compose up atlassian_database_1 is up-to-date atlassian_crowd_1 is up-to-date atlassian_jira_1 is up-to-date atlassian_stash_1 is up-to-date atlassian_confluence_1 is up-to-date atlassian_bamboo_1 is up-to-date Creating atlassian_nginx_1 ERROR: readdirent: not a directory
Also volume mounts can't have
/
so I needed to modify them and change their locations to get it to work.