segregation+tool

This commit is contained in:
Didier Slof 2022-12-04 22:30:49 +01:00
parent 4bff577418
commit 45a751e736
Signed by: didier
GPG key ID: 01E71F18AA4398E5
7 changed files with 302 additions and 24 deletions

24
docker-compose.devops.yml Normal file
View file

@ -0,0 +1,24 @@
version: '2.2'
services:
gitea:
privileged: true
image: gitea/gitea:latest
environment:
- USER_UID=1000
- USER_GID=1002
- LETSENCRYPT_EMAIL=webmaster@faulty.nl
- LETSENCRYPT_HOST=git.faulty.nl
- VIRTUAL_HOST=git.faulty.nl
- VIRTUAL_PORT=3000
restart: always
networks:
- proxy
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
ports:
- "22:22"