Reputation: 387
I follow this install guide run dcm4chee in docker container, when I start the service up by sudo docker-compose -p dcm4chee start
it gives me error
Starting ldap ... done
Starting db ... done
Starting arc ... failed
this is my docker-compose.yml.
docker-compose.env:
STORAGE_DIR=/storage/fs1
POSTGRES_DB=pacsdb
POSTGRES_USER=pacs
POSTGRES_PASSWORD=pacs
Why ldap and db start fine but arc failed.
Edit:
these files are in docker-compose.yml in volumes attribute, but I didn't find wildfly
folder/file in system.
Upvotes: 0
Views: 284
Reputation: 387
It worked, the problem is that for some reason this up command (docker-compose -p dcm4chee up -d) failed to create the wildfly and storage folders, so when I then run start command, the docker failed to start the service as the required folders wasn't created, the solution was simply run up command again, this time it creates the folders correctly.
Upvotes: 0