[GH-ISSUE #25] standard_init_linux.go:211: exec user process caused "exec format error" #21

Closed
opened 2026-03-03 11:55:23 +03:00 by kerem · 3 comments
Owner

Originally created by @fdddf on GitHub (Jan 25, 2021).
Original GitHub issue: https://github.com/Finb/bark-server/issues/25

Originally assigned to: @Finb, @mritd on GitHub.

failed to run docker-compose with latest docker image, it outputs:

Starting bark-server ... done
Attaching to bark-server
bark-server    | standard_init_linux.go:211: exec user process caused "exec format error"

arm64 on ubuntu

Originally created by @fdddf on GitHub (Jan 25, 2021). Original GitHub issue: https://github.com/Finb/bark-server/issues/25 Originally assigned to: @Finb, @mritd on GitHub. failed to run docker-compose with latest docker image, it outputs: ``` Starting bark-server ... done Attaching to bark-server bark-server | standard_init_linux.go:211: exec user process caused "exec format error" ``` arm64 on ubuntu
kerem 2026-03-03 11:55:23 +03:00
Author
Owner

@mritd commented on GitHub (Jan 25, 2021):

Sorry, the arm version of docker image is not currently available.
This week I will rebuild the docker image through buildx.

<!-- gh-comment-id:766880912 --> @mritd commented on GitHub (Jan 25, 2021): Sorry, the arm version of docker image is not currently available. This week I will rebuild the docker image through buildx.
Author
Owner

@mritd commented on GitHub (Jan 30, 2021):

@fdddf Now you can run it with mritd/bark-server image temporarily, we will push to finb/bark-server later.

<!-- gh-comment-id:770147304 --> @mritd commented on GitHub (Jan 30, 2021): @fdddf Now you can run it with `mritd/bark-server` image temporarily, we will push to `finb/bark-server` later.
Author
Owner

@mritd commented on GitHub (Jan 30, 2021):

@Finb Please use the make buildx command to rebuild the docker image. You may need to enable the docker buildx feature according to the documentation. Good luck.

Enable docker experimental feature:

cat > /etc/docker/daemon.json <<EOF
{
    "experimental": true
}
EOF

systemctl restart docker

# if it enabled, the version command will print "true"
docker version -f '{{.Server.Experimental}}')

Docs: https://github.com/docker/cli/blob/master/experimental/README.md#use-docker-experimental

Install buildx command:

# create plugin dir
mkdir -p ~/.docker/cli-plugins/

# download buildx cmd
wget https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-amd64 -O ~/.docker/cli-plugins/docker-buildx
chmod a+x ~/.docker/cli-plugins/docker-buildx

Docs: https://github.com/docker/buildx/blob/master/README.md#installing

<!-- gh-comment-id:770148243 --> @mritd commented on GitHub (Jan 30, 2021): @Finb Please use the `make buildx` command to rebuild the docker image. You may need to enable the docker buildx feature according to the documentation. Good luck. **Enable docker experimental feature:** ```sh cat > /etc/docker/daemon.json <<EOF { "experimental": true } EOF systemctl restart docker # if it enabled, the version command will print "true" docker version -f '{{.Server.Experimental}}') ``` Docs: [https://github.com/docker/cli/blob/master/experimental/README.md#use-docker-experimental](https://github.com/docker/cli/blob/master/experimental/README.md#use-docker-experimental) **Install buildx command:** ```sh # create plugin dir mkdir -p ~/.docker/cli-plugins/ # download buildx cmd wget https://github.com/docker/buildx/releases/download/v0.5.1/buildx-v0.5.1.linux-amd64 -O ~/.docker/cli-plugins/docker-buildx chmod a+x ~/.docker/cli-plugins/docker-buildx ``` Docs: [https://github.com/docker/buildx/blob/master/README.md#installing](https://github.com/docker/buildx/blob/master/README.md#installing)
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/bark-server#21
No description provided.