When cloning from the git repository using git clone https://git-wip-us.apache.org/repos/asf/allura allura-git
and running docker-compose run taskd paster setup-app docker-dev.ini
after running all the previous steps mentioned in the installation manual, we cannot proceed as there is a problem with the naming of the docker image. In the docker-compose.yml
we have allura_web
but actually alluragit_web
is built by docker-compose.
To solve this temporarily, I changed the name in docker-compose.yml
. Here is the diff http://pastebin.com/MQnayhsL
The first link ( the installation manual ) not working.
Last edit: andres fotografo 2016-03-16
The correct link is https://forge-allura.apache.org/docs/getting_started/installation.html#using-docker
The other solution is to have your directory be named just "allura" instead of "allura-git"
Another option if you can't name your directory "allura" is to use
-p
orCOMPOSE_PROJECT_NAME
for all your docker-compose commands, see https://docs.docker.com/compose/reference/overview/See also open issue https://github.com/docker/compose/issues/745 to set a persistent name.
I ran into this problem again myself. Looks like the github issue has a solution now by using an environment file to specify the project name. That's been available since 1.7.0 released in April
https://forge-allura.apache.org/p/allura/git/merge-requests/155/ for a documentation improvement. Can try the "environment file" option later as a permanent fix.