From 96a4f9085ef9ac4857272e0893043897e22328a6 Mon Sep 17 00:00:00 2001 From: Phil Date: Fri, 30 Dec 2022 12:31:56 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Egitea/docker-compose.yml=E2=80=9C=20hi?= =?UTF-8?q?nzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gitea/docker-compose.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 gitea/docker-compose.yml diff --git a/gitea/docker-compose.yml b/gitea/docker-compose.yml new file mode 100644 index 0000000..ce29a8d --- /dev/null +++ b/gitea/docker-compose.yml @@ -0,0 +1,35 @@ +services: + web: + image: gitea/gitea:latest + environment: + - USER_UID=1000 + - USER_GID=1000 + - GITEA__database__DB_TYPE=postgres + - GITEA__database__HOST=db:5432 + - GITEA__database__NAME=gitea + - GITEA__database__USER=gitea + - GITEA__database__PASSWD=gitea + restart: always + volumes: + - data:/data + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + ports: + - "3000:3000" + - "3001:22" + depends_on: + - db + + db: + image: postgres:14 + restart: always + environment: + - POSTGRES_USER=gitea + - POSTGRES_PASSWORD=gitea + - POSTGRES_DB=gitea + volumes: + - db:/var/lib/postgresql/data + +volumes: + data: + db: \ No newline at end of file