Aggiunto gitea
This commit is contained in:
parent
9e750162d4
commit
d620d204c7
|
@ -1,9 +1,10 @@
|
||||||
# Attuali docker-compose
|
# Attuali docker-compose
|
||||||
|
|
||||||
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/foldingathome.png" width="28" /> [folding@home](folding@home/) - calcolo distrubuito per la ricerca medica
|
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/foldingathome.png" width="28" /> [folding@home](folding@home/) - calcolo distrubuito per la ricerca medica
|
||||||
|
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/gitea.png" width="28" /> [gitea](gitea/) - simil-github personale
|
||||||
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/youtubedl.png" width="28" /> [metube](metube/) - frontend per youtube-dl
|
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/youtubedl.png" width="28" /> [metube](metube/) - frontend per youtube-dl
|
||||||
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/miniflux.png" width="28" /> [miniflux](miniflux/) - feed rss minimale
|
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/miniflux.png" width="28" /> [miniflux](miniflux/) - feed rss minimale
|
||||||
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/navidrome.png" width="28" /> [navidrome](navidrome/) - spotify personale
|
* <img src="https://raw.githubusercontent.com/NX211/homer-icons/master/navidrome.png" width="28" /> [navidrome](navidrome/) - simil-spotify personale
|
||||||
* <img src="https://raw.githubusercontent.com/containrrr/watchtower/main/logo.png" width="28" /> [watchotwer](watchtower/) - monitor per aggiornamenti
|
* <img src="https://raw.githubusercontent.com/containrrr/watchtower/main/logo.png" width="28" /> [watchotwer](watchtower/) - monitor per aggiornamenti
|
||||||
* altri in arrivo, stay tuned™
|
* altri in arrivo, stay tuned™
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Generale
|
||||||
|
POSTGRES_DATA:/home/docker/gitea/db
|
||||||
|
GITEA_DATA:/home/docker/gitea/data
|
||||||
|
GITEA_HTTP_PORT:3000
|
||||||
|
GITEA_SSH_PORT:221
|
||||||
|
|
||||||
|
# Postgres
|
||||||
|
POSTGRES_USER=gitea
|
||||||
|
POSTGRES_PASSWORD=gitea
|
||||||
|
POSTGRES_DB=gitea
|
||||||
|
|
||||||
|
# Gitea
|
||||||
|
GITEA__database__DB_TYPE=postgres
|
||||||
|
GITEA__database__HOST=db:5432
|
||||||
|
GITEA__database__NAME=gitea
|
||||||
|
GITEA__database__USER=gitea
|
||||||
|
GITEA__database__PASSWD=gitea
|
|
@ -0,0 +1,134 @@
|
||||||
|
# Gitea in docker
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<img src="https://gitea.io/images/screenshot.png" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
# Descrizione
|
||||||
|
|
||||||
|
* [Sito ufficiale](https://gitea.io/)
|
||||||
|
* [Repo (Github)](https://github.com/go-gitea/gitea)
|
||||||
|
|
||||||
|
Gitea è un simil-github veloce, semplice e facile da configurare e usare:
|
||||||
|
|
||||||
|
- Scritto in Go (Golang)
|
||||||
|
- Multipiattaforma (Linux, macOS, Windows, ARM e PowerPC)
|
||||||
|
- La cosa che si avvicina maggiormente a GitHub (esteticamente e funzionalmente)
|
||||||
|
- Supporta i maggiori database (SQLite, MySQL/MariaDB e PostgreSQL)
|
||||||
|
|
||||||
|
# Struttura file e cartelle
|
||||||
|
|
||||||
|
```
|
||||||
|
/home/
|
||||||
|
└── ~/
|
||||||
|
└── docker/
|
||||||
|
└── gitea/
|
||||||
|
├── data/
|
||||||
|
├── db/
|
||||||
|
├── .env
|
||||||
|
└── docker-compose.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
* `data/` - la cartella dove i dati di gitea vengono salvati
|
||||||
|
* `db/` - la cartella dove i dati del database vengono salvati
|
||||||
|
* `.env` - un file contenenti le variabili environment per il docker compose
|
||||||
|
* `docker-compose.yml` - il docker compose per creare il container
|
||||||
|
|
||||||
|
Tutti i file e le cartelle devono essere creati a mano.</br>
|
||||||
|
|
||||||
|
# docker-compose
|
||||||
|
|
||||||
|
`docker-compose.yml`
|
||||||
|
```yml
|
||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
container_name: gitea-db
|
||||||
|
image: postgres:13-alpine
|
||||||
|
restart: always
|
||||||
|
env_file: .env
|
||||||
|
volumes:
|
||||||
|
- ${POSTGRES_DATA:-/home/docker/gitea/db}:/var/lib/postgresql/data
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "pg_isready", "-U", "gitea"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 10s
|
||||||
|
|
||||||
|
git:
|
||||||
|
container_name: gitea
|
||||||
|
image: gitea/gitea:1.14.2
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
ports:
|
||||||
|
- ${GITEA_HTTP_PORT:-3000}:3000
|
||||||
|
- ${GITEA_SSH_PORT:-221}:22
|
||||||
|
env_file: .env
|
||||||
|
volumes:
|
||||||
|
- ${POSTGRES_DATA:-/home/docker/gitea/data}:/data
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
healthcheck:
|
||||||
|
test: ["curl --silent --fail http://localhost:${GITEA_HTTP_PORT:-3000} || exit 1"]
|
||||||
|
interval: 20s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 10s
|
||||||
|
```
|
||||||
|
|
||||||
|
`.env`
|
||||||
|
```bash
|
||||||
|
# Generale
|
||||||
|
POSTGRES_DATA:/home/docker/gitea/db
|
||||||
|
GITEA_DATA:/home/docker/gitea/data
|
||||||
|
GITEA_HTTP_PORT:3000
|
||||||
|
GITEA_SSH_PORT:221
|
||||||
|
|
||||||
|
# Postgres
|
||||||
|
POSTGRES_USER=gitea
|
||||||
|
POSTGRES_PASSWORD=gitea
|
||||||
|
POSTGRES_DB=gitea
|
||||||
|
|
||||||
|
# Gitea
|
||||||
|
GITEA__database__DB_TYPE=postgres
|
||||||
|
GITEA__database__HOST=db:5432
|
||||||
|
GITEA__database__NAME=gitea
|
||||||
|
GITEA__database__USER=gitea
|
||||||
|
GITEA__database__PASSWD=gitea
|
||||||
|
```
|
||||||
|
|
||||||
|
# Reverse proxy
|
||||||
|
|
||||||
|
Ancora non ho previsto l'uso di un reverse proxy. (Vedi [Todo](#Todo))
|
||||||
|
|
||||||
|
# Aggiornamenti
|
||||||
|
|
||||||
|
[Watchtower](https://github.com/DoTheEvo/selfhosted-apps-docker/tree/master/watchtower) aggiorna l'immagine automaticamente.
|
||||||
|
|
||||||
|
Aggiornamento manuale:
|
||||||
|
|
||||||
|
- `docker-compose pull`</br>
|
||||||
|
- `docker-compose up -d`</br>
|
||||||
|
- `docker image prune`
|
||||||
|
|
||||||
|
# Backup e ripristino
|
||||||
|
|
||||||
|
#### Backup
|
||||||
|
|
||||||
|
Copiare a mano, tramite crontab o altro la cartella `gitea` (Vedi [Todo](#Todo))
|
||||||
|
|
||||||
|
#### Ripristino
|
||||||
|
|
||||||
|
* spegnere il container `docker-compose down`</br>
|
||||||
|
* cancellare l'intera cartella `gitea`</br>
|
||||||
|
* dal backup copiare la cartella `gitea`</br>
|
||||||
|
* far partire il container `docker-compose up -d`
|
||||||
|
|
||||||
|
# Todo
|
||||||
|
|
||||||
|
Implementare:
|
||||||
|
- reverse proxy: **[caddy](https://caddyserver.com/) o [traefik](https://doc.traefik.io/traefik/).**
|
||||||
|
- backup: **[borg](https://github.com/DoTheEvo/selfhosted-apps-docker/tree/master/borg_backup) per fare i backup giornalieri completi.**
|
|
@ -0,0 +1,37 @@
|
||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
container_name: gitea-db
|
||||||
|
image: postgres:13-alpine
|
||||||
|
restart: always
|
||||||
|
env_file: .env
|
||||||
|
volumes:
|
||||||
|
- ${POSTGRES_DATA:-/home/docker/gitea/db}:/var/lib/postgresql/data
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "pg_isready", "-U", "gitea"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 10s
|
||||||
|
|
||||||
|
git:
|
||||||
|
container_name: gitea
|
||||||
|
image: gitea/gitea:1.14.2
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
ports:
|
||||||
|
- ${GITEA_HTTP_PORT:-3000}:3000
|
||||||
|
- ${GITEA_SSH_PORT:-221}:22
|
||||||
|
env_file: .env
|
||||||
|
volumes:
|
||||||
|
- ${POSTGRES_DATA:-/home/docker/gitea/data}:/data
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
healthcheck:
|
||||||
|
test: ["curl --silent --fail http://localhost:${GITEA_HTTP_PORT:-3000} || exit 1"]
|
||||||
|
interval: 20s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 10s
|
Loading…
Reference in New Issue