You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deploying the dokku app (running dokku tags:deploy api latest) raised this error:
Attempting pre-flight checks (web.1) Waiting for 10 seconds ... ee21cdf0ef4d125ec6f443e7cdb732f4dcb97e31086c2361d8c69287d3d05a57 App container failed to start!! =====> api web container output: [FATAL tini (6)] exec docker-entrypoint.sh failed: Exec format error =====> end api web container output
This is with Redis 6.2.6. Some searching led me to believe that the docker container's connection to redis is the culprit.
In the .env file, I changed REDIS_URL to: REDIS_URL= redis://:[email protected]:6379
But this results in an authentication error from Redis. Using host.docker.internal without a password leads to a NOAUTH error.
Has anyone experienced a similar issue? I am considering following the instructions here: redis/ioredis#763 to deploy using docker-compose, since it seems like the docker Redis container is not playing nicely with the backend.
Thanks
The text was updated successfully, but these errors were encountered:
Guys, I found out what the error was. In my case I was building the Docker image on an M1 Macbook. So the image architecture was arm64. Then I tried to build for amd64 and it worked now.
Deploying the dokku app (running
dokku tags:deploy api latest
) raised this error:Attempting pre-flight checks (web.1) Waiting for 10 seconds ... ee21cdf0ef4d125ec6f443e7cdb732f4dcb97e31086c2361d8c69287d3d05a57 App container failed to start!! =====> api web container output: [FATAL tini (6)] exec docker-entrypoint.sh failed: Exec format error =====> end api web container output
This is with Redis 6.2.6. Some searching led me to believe that the docker container's connection to redis is the culprit.
In the .env file, I changed REDIS_URL to:
REDIS_URL= redis://:[email protected]:6379
But this results in an authentication error from Redis. Using host.docker.internal without a password leads to a NOAUTH error.
Has anyone experienced a similar issue? I am considering following the instructions here: redis/ioredis#763 to deploy using docker-compose, since it seems like the docker Redis container is not playing nicely with the backend.
Thanks
The text was updated successfully, but these errors were encountered: