-
Notifications
You must be signed in to change notification settings - Fork 7
Description
After executing quickinstall using HapCHAT's Dockerfile, I tried to start up and connect the created Docker container.
Although "docker start" was executed and it seemed that the container started, when trying to connect to the container with "docker attach", an error message is displayed and connection can not be made.
The following code is the work log.
`# docker run -v /root/HapCHAT:/data algolab/hapchat
Unable to find image 'algolab/hapchat:latest' locally
Trying to pull repository docker.io/algolab/hapchat ...
latest: Pulling from docker.io/algolab/hapchat
1be7f2b886e8: Pulling fs layer
6fbc4a21b806: Pulling fs layer
c71a6f8e1378: Pulling fs layer
4be3072e5a37: Pulling fs layer
06c6d2f59700: Pulling fs layer
4708070b1207: Pulling fs layer
936f29c876d6: Pulling fs layer
(ommision)
Status: Downloaded newer image for docker.io/algolab/hapchat:latest
Nothing to be done.
# docker iamages REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/algolab/hapchat latest b3e7d09db905 5 months ago 1.13 GB
# docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES a218d5b80ede algolab/hapchat "/usr/bin/snakemake" 4 minutes ago Exited (0) 4 minutes ago hardcore_boyd
# docker start a218d5b80ede
a218d5b80ede
# docker attach a218d5b80ede
You cannot attach to a stopped container, start it first
Is there a way to solve this phenomenon?
Above, thank you.