coolify/templates/compose/gitea.yaml

24 lines
671 B
YAML
Raw Normal View History

2023-11-03 12:04:01 +01:00
# documentation: https://docs.gitea.com
# slogan: Gitea is a self-hosted, lightweight Git service, offering version control, collaboration, and code hosting.
# tags: version control, collaboration, code, hosting, lightweight
2024-02-20 15:07:12 +01:00
# logo: svgs/gitea.svg
2023-11-03 12:04:01 +01:00
services:
gitea:
image: gitea/gitea:latest
environment:
2023-11-06 20:53:51 +01:00
- SERVICE_FQDN_GITEA_3000
2023-11-03 12:04:01 +01:00
- USER_UID=1000
- USER_GID=1000
2023-11-07 10:18:28 +01:00
ports:
- 22222:22
2023-11-03 12:04:01 +01:00
volumes:
2024-05-02 15:06:40 +02:00
- gitea-data:/data
2023-11-03 12:04:01 +01:00
- gitea-timezone:/etc/timezone:ro
- gitea-localtime:/etc/localtime:ro
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 2s
timeout: 10s
retries: 15