docker-firefox icon indicating copy to clipboard operation
docker-firefox copied to clipboard

Exec format error in Docker compose

Open MrMax486 opened this issue 1 year ago • 1 comments

Hello! I'm trying to launch the container in docker compose but i get the error: exec /init: exec format error

this is my configuration:

version: '3'
  
services:
  firefox:
    container_name: firefox
    image: jlesage/firefox
    ports:
      - "5800:5800"
    volumes:
      - firefox:/usr/share/firefox_docker:rw
    restart: always

volumes:
  firefox:

and this is the result when I try to start the container

pi@raspberrypi:~/docker-compose $ docker-compose up firefox
Creating firefox ... done
Attaching to firefox
firefox           | exec /init: exec format error

I'm on Raspbian on a RB4

thanks

MrMax486 avatar Aug 26 '22 13:08 MrMax486

The image only supports x86-64 architecture for now. I'm currently working on adding support for ARM.

jlesage avatar Aug 28 '22 23:08 jlesage

Latest image is now multi-arch.

jlesage avatar Oct 10 '22 03:10 jlesage