2022-02-02 12:12:08 +01:00
|
|
|
services:
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2025-02-04 18:14:37 +01:00
|
|
|
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2022-02-02 12:12:08 +01:00
|
|
|
application:
|
2025-02-04 22:37:07 +01:00
|
|
|
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
2025-02-03 11:44:13 +01:00
|
|
|
image: "gitea/gitea:{{applications.gitea.version}}"
|
2022-02-02 12:12:08 +01:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:{{http_port}}:3000"
|
2025-02-12 12:41:13 +01:00
|
|
|
- "{{ports.public.ssh[application_id]}}:22"
|
2022-02-02 12:12:08 +01:00
|
|
|
volumes:
|
|
|
|
- data:/data
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2024-01-06 11:09:30 +01:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000"]
|
|
|
|
interval: 1m
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
|
2023-12-26 03:36:29 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
2022-02-02 12:12:08 +01:00
|
|
|
data:
|
2023-12-31 11:14:18 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|