-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default Docker runs on arm? #168
Comments
Hey, good question. I've never tried to run it on ARN. |
I guess it might be some general issue with Docker on ARN. |
Hello, no general issue with arm. it is caused by the image you build your Dockerfile on. This one is not universal and does not run on arm. You built upon I did my own Dockerfile which was easy to build based on your excelent documentation. This one is universal and runs on any architecture.
Works like a charm. |
Should I change it to something different? |
Thanks. My answer above was send pre mature ,-). Sorry. FROM node:8-alpine |
Hmm, that change would cause that the image would be significantly bigger. Let me think about it. |
Thanks for considering it. |
The difference in size in minimal. I switched to the Node's official image. Thanks for reporting it! |
Hello, I just tried to run the last docker image on my Rasberry Pi 3B+, on Raspbian Buster (ARM32v7), and it does not work.
the base image seems to be incompatible with the RPi architecture. |
@cartemere can I ask you to try building frontail image from the Dockerfile in the repo? Based on @rklueber comments it should work. |
Hi @mthenw, I'm getting the same error on my Raspberry 4B, regardless if I use a docker-compose file or 'docker run -d -P -v /var/log:/log mthenw/frontail /log/syslog' from your README... |
Same here :( |
Same issue here with raspberry pi3; is there a workaround or soon fix? @mthenw Would be really great! Thx a lot in advance. Seb |
I helped myself with a base image of node, worked for me. (I ignored the deprecated warning during installation of frontail)
Don't forget to start frontail with your log files: |
hmm, if that's the case, I will try to fix it right away. |
I published new image |
Tried it out, is seems not to pull the right architecture, while the node image does.
|
Hi, any progess on this ?I still got this error: |
So, this is my current Dockerfile which works on a raspberry pi 4
|
Hello,
I tried to run the docker on arm/Pi3B+.
docker-compose:
frontail: image: mthenw/frontail container_name: frontail ports: - 9001:9001 volumes: - ../userdata/logs:/log
$ docker-compose up frontail Creating frontail ... done Attaching to frontail frontail | standard_init_linux.go:190: exec user process caused "exec format error" frontail exited with code 1
Do I miss anything simple? Or is the docker as such not working on arm and I need to build/have another Dockerfile.
Regards.
Ralf
The text was updated successfully, but these errors were encountered: