From 1740b16aa7416af7bd84cf464aa0e1b00b365523 Mon Sep 17 00:00:00 2001 From: jrodriiguezg Date: Sat, 15 Aug 2026 15:32:41 +0200 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20gitea=5Fcompose.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitea_compose.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gitea_compose.yaml diff --git a/gitea_compose.yaml b/gitea_compose.yaml new file mode 100644 index 0000000..88b7c11 --- /dev/null +++ b/gitea_compose.yaml @@ -0,0 +1,19 @@ +version: '3.8' + +services: + server: + image: gitea/gitea:latest + container_name: gitea + environment: + - USER_UID=1000 + - USER_GID=1000 + - GITEA__database__DB_TYPE=sqlite3 + - GITEA__database__PATH=/data/gitea/gitea.db + restart: always + volumes: + - ./gitea/:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - "3000:3000" + - "2222:22"