Using below pre-requisites:
- Docker version 18.09.7,
- docker-compose version 1.8.0
Start Botium Box by running docker-compose:
>docker-compose up -d
botiumboxce_redis_1 is up-to-date
botiumboxce_mysql_1 is up-to-date
botiumboxce_prisma_1 is up-to-date
botiumboxce_web_1 is up-to-date
but unable to hit botiumbox
When tried the below command
>docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
4471b9e351c7 botium/botium-box-ce:2.5.0 "docker-entrypoint.s…" 5 days ago Up Less than a second 0.0.0.0:4000->4000/tcp botiumboxce_web_1
aac0e5d27639 prismagraphql/prisma:1.34.10 "/bin/sh -c /app/sta…" 5 days ago Up 18 hours 0.0.0.0:4466->4466/tcp botiumboxce_prisma_1
980823f62cde mysql:5.7 "docker-entrypoint.s…" 5 days ago Up 18 hours 3306/tcp, 33060/tcp botiumboxce_mysql_1
6e212a21b75f redis:alpine "docker-entrypoint.s…" 2 weeks ago Up 18 hours 0.0.0.0:6379->6379/tcp botiumboxce_redis_1
again i'm getting as below:
4471b9e351c7 botium/botium-box-ce:2.5.0 "docker-entrypoint.s…" 5 days ago Restarting (127) 6 seconds ago botiumboxce_web_1
aac0e5d27639 prismagraphql/prisma:1.34.10 "/bin/sh -c /app/sta…" 5 days ago Up 18 hours 0.0.0.0:4466->4466/tcp botiumboxce_prisma_1
980823f62cde mysql:5.7 "docker-entrypoint.s…" 5 days ago Up 18 hours 3306/tcp, 33060/tcp botiumboxce_mysql_1
6e212a21b75f redis:alpine "docker-entrypoint.s…" 2 weeks ago Up 18 hours 0.0.0.0:6379->6379/tcp botiumboxce_redis_1
I also tried removing web_1 and update it and run again, but still i get the same. Always web_1 is restarting every minute.
> docker-compose stop
> docker-compose rm web
> docker-compose pull
> docker-compose up -d
For updating botium box i used above commands.