I’m trying to deploy a very simple container (from a Dockerfile) but the Pod crashed at launch time. When I go to “Live logs”, the logs don’t load and I have an infinite loading (never resulting)
can you help me to know what’s going on?
Dockerfile
FROM alpine:3.17.3
RUN apk add --no-cache postgresql-client redis
ENTRYPOINT ["/bin/sh"]
Your app fails to start because you didn’t define the CMD command to be executed. You can directly set this CMD command via the Qovery interface or inside your Dockerfile.
Ok, I see. I’m trying to have a simple “tooling” instance on my cluster to be able to access resources in the related VPC (databases, etc). From my understanding, I could use the qovery shell command to connect to it
Hi @clemg , you need to make your instance a long-running process. You can add inside your Dockerfile something keeping your container running as explained in this StackOverflow thread.