feat(gitea): docker-compose.yml
also, gitignore for all those files with production data
parent
29aacfdee1
commit
2bf7ed3fad
|
|
@ -0,0 +1,9 @@
|
||||||
|
gitea/git
|
||||||
|
gitea/ssh
|
||||||
|
gitea/gitea/gitea.db
|
||||||
|
gitea/gitea/sessions
|
||||||
|
gitea/gitea/queues
|
||||||
|
gitea/gitea/indexers
|
||||||
|
gitea/gitea/conf
|
||||||
|
gitea/gitea/avatars
|
||||||
|
.DS_Store
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
gitea:
|
||||||
|
external: false
|
||||||
|
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: gitea/gitea:1.13.2
|
||||||
|
container_name: gitea
|
||||||
|
environment:
|
||||||
|
- DISABLE_REGISTRATION=true
|
||||||
|
- DOMAIN="irie.clinic.homo.casa"
|
||||||
|
- SSH_DOMAIN="irie.clinic.homo.casa"
|
||||||
|
- APP_NAME="Irie Clinic - homo.casa"
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- gitea
|
||||||
|
volumes:
|
||||||
|
- ./gitea:/data
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /home/git/.ssh/:/data/git/.ssh
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
- "22:22"
|
||||||
Loading…
Reference in New Issue