schklom / Mirror-workflows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error deploy

sephirothac opened this issue · comments

Hello,

Thanks for your work, but there is a problem on the deployment of docker feedropolis here are the logs if needed.

edit: I run the service on an arm64 rpi4

Thanks for your work.

docker-compose.yml
version: '3.4'

services:

app:
image: stormworks/feedropolis
ports:
- 5680:3000
user: root
command: npm run start
entrypoint: '/app/docker-entrypoint.sh'
environment:
- DATABASE_URL=postgres://test:test@db:5432/test
- BASE_URL=http://xxx.xxx.xx.xxx
- DEBUG=

db:
image: postgres:latest
environment:
- POSTGRES_USER=test
- POSTGRES_PASSWORD=test

eedropolis-app_1
exec /app/docker-entrypoint.sh: exec format error

image: stormworks/feedropolis

That is because you are using the developer's image instead of mine. The developer's image only works on amd64 platforms.
If you are using it on arm, then yes it won't work. This is why I built an image for arm.

Replace this line with

image: schklom/feedropolis

Thank you for your feedback, a mistake on my part I should have paid more attention to the name of targeted image, I will launch the test.

Thanks again for your help, everything works.

You're welcome :)