Please I have been trying to deploy Seq on google cloud run but every attempt failed with the error below.
The user-provided container failed to start and listen on the port defined provided by the PORT=5341 environment variable.
No matter what port I specified, the Cloud Run build always return the above error with the specified port number.
docker run --name seq -d --restart unless-stopped -e ACCEPT_EULA=Y -p 5341:8081 datalust/seq:latest
docker tag datalust/seq gcr.io/chisquares/seq
docker push gcr.io/chisquares/seq
gcloud run deploy --image gcr.io/chisquares/seq:latest --max-instances=3 --port 8081
Am I doing anything wrong?