From cae68d9a463c6b0bee6d3b1e157f8cabe8d9e594 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sun, 27 Oct 2024 17:00:38 +0100 Subject: [PATCH] Git: Migrate gitea to forgejo --- roles/gitea/templates/docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/gitea/templates/docker-compose.yml b/roles/gitea/templates/docker-compose.yml index c03bb3d..1710acb 100644 --- a/roles/gitea/templates/docker-compose.yml +++ b/roles/gitea/templates/docker-compose.yml @@ -1,16 +1,16 @@ services: web: - image: gitea/gitea:latest + image: codeberg.org/forgejo/forgejo:8 environment: - USER_UID=1000 - USER_GID=1000 - - GITEA__service__DISABLE_REGISTRATION=true - - GITEA__actions__ENABLED=true - - GITEA__actions__DEFAULT_ACTIONS_URL=self - - GITEA__packages__ENABLED=true + - FORGEJO__service__DISABLE_REGISTRATION=true + - FORGEJO__actions__ENABLED=true + - FORGEJO__actions__DEFAULT_ACTIONS_URL=self + - FORGEJO__packages__ENABLED=true restart: unless-stopped volumes: - - {{ server.work_dir }}/gitea/data/:/data + - {{ server.work_dir }}/forgejo/data/:/data - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro networks: