Start the Container under a arm32v7 environment
See original GitHub issueHello,
i have docker running on my raspberry pi 4b with 4 GB RAM.
I want to use the nginx-proxy but there was not separate arm32v7 container thatswhy i was pulling it from the git repository and changing the docker-compose.yml to: ##################### version: ‘2’ services: nginx-proxy: build: . container_name: nginx-proxy ports: - “443:443” volumes: - /var/run/docker.sock:/tmp/docker.sock:ro #####################
I started it with ‘docker-compose up’ and got the following message as latest:
nginx-proxy | WARNING: /etc/nginx/dhparam/dhparam.pem was not found. A pre-generated dhparam.pem will be used for now while a new one nginx-proxy | is being generated in the background. Once the new dhparam.pem is in place, nginx will be reloaded. nginx-proxy | /app/docker-entrypoint.sh: line 34: /usr/local/bin/forego: cannot execute binary file: Exec format error nginx-proxy | /app/docker-entrypoint.sh: line 34: /usr/local/bin/forego: Success nginx-proxy exited with code 1
Has someone a idea how i could fix this?
Greetings
Daniel
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:7 (1 by maintainers)
Hello @jwilder, will we have an ARM docker impage on hub soon? Thank you for your work.
@BMWfan No I don’t know how to proceed, but I just had a look on the docker file and found it depends on Nginx, forego, and docker-gen.
Nginx already has arm32v7 version while forego and docker-gen are based on golang so theoretically you build armv7 version for both of them too.
If it is really needed by others as well, I can fork and maintain an armv7 version. Do you know few other people who would like to join?