Skip to content
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

Provide ARM Docker Image #531

Open
pennal opened this issue Dec 29, 2016 · 75 comments
Open

Provide ARM Docker Image #531

pennal opened this issue Dec 29, 2016 · 75 comments
Labels
issue/confirmed Issue has been reviewed and confirmed to be present or accepted to be implemented topic/deployment

Comments

@pennal
Copy link

pennal commented Dec 29, 2016

It would be great if you could provide an already built docker image on Docker Hub for ARM platforms such as the Raspberry Pi (>= 2). From what I have seen the pipeline seems to be already set up, and the Dockerfile seems to exist.

Thanks!


Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.

@denji
Copy link
Contributor

denji commented Dec 29, 2016

It should be: armhf ( GOARCH=arm | GOARM=7).

@lunny lunny added this to the 1.x.x milestone Dec 31, 2016
@brinsche
Copy link

There is https://github.com/go-gitea/gitea/blob/master/Dockerfile.rpi already but it looks like it differs a little from the normal Dockerfile. The last time it was updated (#386) the rpi-Dockerfile wasn't also updated

@tboerger
Copy link
Member

You are right, it got smaller differences. Currently we don't have a arm pipeline running, but hopefully we can provide that soon

@tboerger
Copy link
Member

Somebody wants to create a pr to bring the files back in sync?

@appleboy
Copy link
Member

appleboy commented Jan 1, 2017

This issue should be closed by #548

@tboerger
Copy link
Member

tboerger commented Jan 1, 2017

No, it's not solved because we don't publish this image yet.

@appleboy
Copy link
Member

appleboy commented Jan 2, 2017

@tboerger Understood.

@Solido
Copy link

Solido commented Jan 9, 2017

In the same continuity not all NAS support docker. Some big brand like Synology offers a .spk deployment mechanism and there's no doubt that a tools like Gitea can be find on such platform a very fast pace of adoption.

@flipswitchingmonkey
Copy link

There's an SPK builder for Gogs gogs-spk which I've forked for Gitea gitea-spk
Tried it with 1.0.1 on a Synology DS116 and it works fine so far.

@ulm0
Copy link

ulm0 commented Feb 18, 2017

is there any docker image for rpi yet?

@tboerger
Copy link
Member

@klud1 only the Dockerfile, no prebuilt image so far

@ulm0
Copy link

ulm0 commented Feb 18, 2017

@tboerger cloned the repo yesterday, tried to build it. then i realized i needed a gitea binary that is copied into the image (got an error saying /app/gitea/gitea: no such file or directory), wanted to build the gitea binary (installing build-essential and golang, the latter by downloading it from the golang website) and got some make [error] when attempting to build it, altought i go get the libraries needed for this. then i just downloaded the gitea binary from the website (https://dl.gitea.io/gitea/1.0.1/gitea-1.0.1-linux-arm-7) and granted execution permission in order for it to be copied in the image, but still docker logs [container name] output /app/gitea/gitea: no such file or directory.

any idea how can this be successfully achieved?

@chadweimer
Copy link

@klud1 Same problem here using a Raspberry Pi 3. I cloned the repo, then make clean generate build followed by docker build -f Dockerfile.rpi .. I'm seeing the same 'no such file or directory' error when starting the container.

@ulm0
Copy link

ulm0 commented Mar 27, 2017

@chadweimer i recently got it working, just changed some things in the dockerfile, built it and tested it and it all seems to work fine, here is the Dockerfile in case you want to see it.
screenshot from 2017-03-26 21-30-56

@chadweimer
Copy link

@klud1 That's great! I suspected it was something in the image since I was able to build and run outside docker. I tried a few things but wasn't able to figure it out. Any chance you can post your changes here? I'm not able to access that file on your GitLab repo, even after signing in.

@ulm0
Copy link

ulm0 commented Mar 27, 2017

@chadweimer oh, gosh! you're right, i can't access it when singing out either, it shows a 404 error, even though it's set as a public project. So sorry. Here is the Dockerfile:

FROM armhf/alpine:3.5

ENV USER git
ENV GITEA_CUSTOM /data/gitea
ENV GODEBUG=netdns=go

RUN apk update && \
  apk add \
    su-exec \
    ca-certificates \
    sqlite \
    bash \
    git \
    linux-pam \
    s6 \
    curl \
    openssh \
    wget \
    tzdata && \
  rm -rf \
    /var/cache/apk/* && \
  addgroup \
    -S -g 1000 \
    git && \
  adduser \
    -S -H -D \
    -h /data/git \
    -s /bin/bash \
    -u 1000 \
    -G git \
    git && \
  echo "git:$(date +%s | sha256sum | base64 | head -c 32)" | chpasswd

COPY docker /
RUN mkdir -p /app/gitea && \
    wget -O /app/gitea/gitea https://github.com/go-gitea/gitea/releases/download/v1.1.0/gitea-1.1.0-linux-arm-7 && \
    chmod +x /app/gitea/gitea

EXPOSE 22 3000

VOLUME ["/data"]

ENTRYPOINT ["/usr/bin/entrypoint"]
CMD ["/bin/s6-svscan", "/etc/s6"]

You also need the docker folder in the gitea repo in order to get it working.

@kfordaccela
Copy link

kfordaccela commented Jan 26, 2018

Please note that you will want to update the release that you're using from the correct release at the following url. https://github.com/go-gitea/gitea/releases after which you can do a rebuild and restart th container with a command like the following.

docker run -d --restart=always --name=gitea-arm_1.3.2a -p 1022:22 -p 3000:3000 -v /opt/gitea:/data 9f93a41afd45

I usually do a remove of the old image after starting the new one, no issues with the upgrade path.

This was referenced May 10, 2018
@poupryc
Copy link

poupryc commented Oct 15, 2018

So are you planning to automatically publish an arm64 image? if so, you might be interested in the arm64v8 repo which offers arm64 compatible docker images of the most popular images (node, rust, busybox...). Maybe adding a gitea here could be an interesting compromise as described here?

@lafriks
Copy link
Member

lafriks commented Oct 15, 2018

we do but first we need move to using builtin ssh server in official docker image.

@lunny
Copy link
Member

lunny commented Oct 16, 2018

@lafriks yes, maybe we could do that on docker:latest but docker:1 keep OpenSSH currently.

@lafriks
Copy link
Member

lafriks commented Oct 16, 2018

@lunny yes we can do that only after we have release/v1.6 branch

@tboerger
Copy link
Member

Currently we can only build amd64 because we need to install system packages and we only got an amd64 ci worker. If we get rid of the system packages like OpenSSH and git we can cross compile the binary and push the other architecture images, as long as we install system packages we need native agents.

@tboerger
Copy link
Member

Can confirm the ARM64 image runs pretty well! However I'd love to see an ARMv6/7 image for RPi 2 and lower

Until there is an official one you could use webhippie/gitea which is built for arm64v8, arm32v6 and amd64 ;)

@manisto
Copy link

manisto commented Mar 15, 2020

@everflux, did you actually get the gitea/gitea:latest image to run on your Raspberry Pi? I feel like I've tried everything with no luck.

@sk-t3ch
Copy link

sk-t3ch commented Mar 15, 2020

@sk-t3ch
Copy link

sk-t3ch commented Mar 15, 2020

Sorry @manisto I meant this one https://medium.com/@t3chflicks/home-devops-pipeline-a-junior-engineers-tale-2-4-7be3e3c292c?utm_source=share

@everflux
Copy link

@manisto yes I am running the gitea/gitea image from DockerHub on ODROID N2 with Archlinux ARM / arm64 as kubernetes pod. Works great so I don’t expect any trouble when running on Raspberry pi neither. (If you are using raspian I assume this is usually a 32bit flavor but docker should resolve that properly.)
What error do you get?

@ulm0
Copy link

ulm0 commented Mar 15, 2020

@manisto is your rpi os 64bit?

@Kunde21
Copy link

Kunde21 commented Mar 16, 2020

@manisto If you're running on 32-bit, then you can use kunde21/gitea-arm or webhippie/gitea images. Both have arm variants in the manifest.

@gpanders
Copy link

gpanders commented Mar 25, 2020

The webhippie/gitea image uses different environment variables than the gitea/gitea image, which means the installation instructions don't work when using that image.

When using that image I'm not able to get to the install page and any environment variables I specify in the docker compose file seem to be ignored.

@tboerger
Copy link
Member

This image disables the installer on purpose, all settings can be set by env variables. The first registered user will be the initial admin. I'm currently thinking about creating an initial admin user from env variables, then I'm able to use this container for automated integration tests for drone.

@melroy89
Copy link
Contributor

melroy89 commented Oct 4, 2020

@tboerger Please provide a armv7 as well! I'm running a Banana Pi.. I would love to host it on there.. But I can't ;( Is it very hard to compile for arm7 as well during your CI/CD pipeline? And provide the docker image.

ERROR: no matching manifest for linux/arm/v7 in the manifest list entries

@tboerger
Copy link
Member

tboerger commented Oct 4, 2020

No, because that would require another worker for the ci system. But you can run the arm6 image on arm7

@carlonluca
Copy link

@Danger89 if you want I have images for armv6, armv7 and arm64. I am using it on pi 2, pi3 and pi4.
https://hub.docker.com/repository/docker/carlonluca/gitea

@melroy89
Copy link
Contributor

melroy89 commented Oct 6, 2020

No, because that would require another worker for the ci system. But you can run the arm6 image on arm7

That is not how docker work:
image

@carlonluca Thanks, but for some reason those dockers aren't working on my banana pi. It says its up. But often it won't load my app.ini correctly or doesn't use the same environment variables. Or whatever is wrong.

image

I just want to use the official docker images, on my pi.

@carlonluca
Copy link

@Danger89 use the latest-official tag. That comes straight from the official Dockerfile.

@melroy89
Copy link
Contributor

melroy89 commented Oct 6, 2020

Just :latest right? Which is the default tag. Yes, I tried that.. It isn't working. Or you mean another latest tag?

@tboerger
Copy link
Member

tboerger commented Oct 6, 2020

@Danger89 have you tried webhippie/gitea?

@melroy89
Copy link
Contributor

melroy89 commented Oct 6, 2020

Tonight I will try this latest official tag. I will keep you posted. Thanks

@melroy89
Copy link
Contributor

melroy89 commented Oct 7, 2020

Well carlonluca/gitea image using the latest-official tag is at least working. Let's see how easy it is to migrate my data. Back-up script is provided, still missing an easy restore script.

I think I'm facing some (not issue related) migration issues. Where the database is from version gitea version 1.13.0, and now the latest stable on arm is gitea version 1.12.5 (so a down grade in minor release).

This is something Gitea doesn't like :)

on /explore/repos page:

template: explore/repo_list:32:9: executing "explore/repo_list" at <.DescriptionHTML>: error calling DescriptionHTML: unrecognized repo unit type: 8

@melroy89
Copy link
Contributor

melroy89 commented Oct 8, 2020

@carlonluca I think I wait a bit longer when the stable release v1.13 is out.

Once you then update the latest-official tag again, I think I'm able to easily migrate from my x86 setup to my BananaPi.

@lunny
Copy link
Member

lunny commented Oct 15, 2020

1.13rc1 is out.

@carlonluca
Copy link

I built the new image but it is not working for me on arm64, sorry. Latest-official remains the latest stable. I'll build the following stable versions.

@melroy89
Copy link
Contributor

Over 1 week or so, I expect to see v1.13 stable release to be rolled out. I also would not advice to change the latest-official tag, until the stable release is created (iso RC-versions).

@carlonluca
Copy link

carlonluca commented Dec 3, 2020

I uploaded 1.13.0: https://hub.docker.com/repository/docker/carlonluca/gitea.

@melroy89
Copy link
Contributor

melroy89 commented Dec 3, 2020

Nice thx for the update!

@heliomcp

This comment has been minimized.

@melroy89
Copy link
Contributor

Well, the last message from @tboerger was:

No, because that would require another worker for the ci system

😖 ahaha...

What about GitHub Actions!?

@go-gitea go-gitea locked and limited conversation to collaborators Dec 15, 2020
@techknowlogick
Copy link
Member

Locking. This is a general statement, but on issues in this project please don't comment with "any news on this?", we are all volunteers and will post to threads if there are updates. Over 400+ people get an email on any comment on issues to our repo, please don't overload their inbox with comments that don't add to the ticket.

Once we get another ARM CI agent we can get this up and running, but until that time this will remain open.

@lunny lunny removed this from the 1.x.x milestone Mar 20, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
issue/confirmed Issue has been reviewed and confirmed to be present or accepted to be implemented topic/deployment
Projects
None yet
Development

No branches or pull requests