Sign inSign up

mephistoxol/gitea

By mephistoxol

Updated over 4 years ago

Latest Gitea for Raspberry pi 4/3+/3/2, arm64 & amd64

Image
8

100K+

mephistoxol/gitea repository overview

Docker-Gitea

Docker-Gitea

Latest Gitea for Raspberry pi 4/3+/3/2, arm64 & amd64

Build Status Docker Pulls Docker Image Version (tag latest semver) Docker Image Size (tag) Docker Stars Paypal

This image is the latest version of Gitea, Dockerfile get and download the latest version.

As oficial Gitea this image exports:

  • 3000 for webUI
  • 22 for ssh.
  • The repositoy and other data are located in /data

Install

Command line:

docker run -d -p 3000:3000 -p 222:22 -v /your/path/for/data:/data mephistoxol/gitea

Docker Compose:

version: '3.2'
services:
  app:
    container_name: gitea_app
    image: mephistoxol/gitea
    restart: unless-stopped
    # Traefik v1.7 optional
    labels:
      - traefik.frontend.rule: "Host:gitea.domain.com"
      - traefik.port: "3000"
      - traefik.frontend.redirect.entryPoint: "https"    
    networks:      
      - internal-network
    ports:
      - "3000:3000"
      - "222:22"
    volumes:
      - /your/path/for/data:/data

Ansible:

      docker_container:
        name: gitea_app
        image: mephistoxol/gitea
        volumes:
          - /your/path/for/data:/data
        ports:
          - 3000:3000
        restart_policy: unless-stopped
        # Traefik v1.7 optional
        labels:
          traefik.frontend.rule: "Host:gitea.domain.com"
          traefik.port: "3000"
          traefik.frontend.redirect.entryPoint: "https"
        networks:
          - name: internal-network
      register: result

Database

You can choose type of Database in the install web.

NOTE: If you want to use mysql db you need other container like linuxserver/mariadb and you must create a db and user with privileges from gitea_app container

Changelog

03-01-2022
- Gitea v1.15.9
  - Built from Drone.io Kubernetes Runner
20-12-2021
- Gitea v1.15.7
  - Built from Drone.io Kubernetes Runner
10-10-2021
- Gitea v1.15.4
22-08-2021
- Gitea v1.15.0
16-07-2021
- Gitea v1.14.5
06-07-2021
- Gitea v1.14.4
18-06-2021
- Gitea v1.14.3
11-05-2021
- Gitea v1.14.2
21-04-2021
- Gitea v1.14.1
25-03-2021
- Optimize code to gathering Gitea latest version
- Gitea v1.13.6
20-10-2019
- Added Multi arch building
- Gitea v1.10.0-rc1
12-10-2019
- Gitea v1.9.4
- Based on latest Alpine arm
- Gitea v1.9.3

Donate

Paypal

Tag summary

Content type

Image

Digest

Size

67.6 MB

Last updated

over 4 years ago

docker pull mephistoxol/gitea