20 lines
470 B
YAML
20 lines
470 B
YAML
|
version: '2.2'
|
||
|
services:
|
||
|
git:
|
||
|
image: codeberg.org/forgejo/forgejo:1.20
|
||
|
container_name: git # IMPORTANT FOR SSH
|
||
|
restart: always
|
||
|
privileged: true
|
||
|
environment:
|
||
|
USER_UID: 1000
|
||
|
USER_GID: 1002
|
||
|
volumes:
|
||
|
- /srv/gitea/data:/data/git
|
||
|
- /srv/gitea/config:/data/gitea
|
||
|
- /srv/gitea/other/ssh:/data/ssh
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
networks:
|
||
|
- proxy
|
||
|
- internal
|