Skip to main content

Installing source control using gitea

Using portainer stacks to install Gitea source control:

version: "3"

networks:
gitea:
external: false

services:
server:
image: gitea/gitea:1.15.10
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3030:3000"
- "222:22"

YouTube video of installing gitea on portainer/docker