This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/docker-compose.devops.yml
2022-12-04 22:30:49 +01:00

24 lines
No EOL
571 B
YAML

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"