segregation+tool
This commit is contained in:
parent
4bff577418
commit
45a751e736
7 changed files with 302 additions and 24 deletions
24
docker-compose.devops.yml
Normal file
24
docker-compose.devops.yml
Normal 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"
|
Reference in a new issue