app-store/apps/gitea/docker-compose.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2022-07-28 17:46:12 +00:00
version: "3.7"
services:
gitea:
image: gitea/gitea:1.19.2
2022-07-28 17:46:12 +00:00
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=gitea-db:5432
- GITEA__database__NAME=gitea
- GITEA__database__USER=gitea
- GITEA__database__PASSWD=gitea
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/data/gitea:/data
ports:
- ${APP_PORT}:3000
- "222:22"
depends_on:
- gitea-db
2022-11-11 19:33:58 +00:00
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.gitea.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.gitea.entrypoints: websecure
traefik.http.routers.gitea.service: gitea
traefik.http.routers.gitea.tls.certresolver: myresolver
traefik.http.services.gitea.loadbalancer.server.port: 3000
2022-07-28 17:46:12 +00:00
gitea-db:
container_name: gitea-db
image: postgres:14
restart: unless-stopped
environment:
- POSTGRES_USER=gitea
- POSTGRES_PASSWORD=gitea
- POSTGRES_DB=gitea
volumes:
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
networks:
- tipi_main_network