From a2532dd7b05b5f7ec443fb4d3df599f7cb954dde Mon Sep 17 00:00:00 2001 From: Octopus Octopus Date: Sun, 26 Nov 2023 15:59:24 -0600 Subject: [PATCH] first commit --- compose-files/gitea.yml | 30 ++++++++++++++++++++++++++++++ compose-files/podgrab.yml | 21 +++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 compose-files/gitea.yml create mode 100644 compose-files/podgrab.yml diff --git a/compose-files/gitea.yml b/compose-files/gitea.yml new file mode 100644 index 0000000..d21ce52 --- /dev/null +++ b/compose-files/gitea.yml @@ -0,0 +1,30 @@ +version: "3" + +volumes: + gitea-data: + driver: local + gitea-ssh: + driver: local + +services: + server: + container_name: gitea + image: gitea/gitea:1 + restart: always + volumes: + #- gitea-data:/var/lib/gitea:Z + #- gitea-config:/etc/gitea:Z + - gitea-data:/data:Z + - gitea-ssh:/data/git/.ssh:Z + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + environment: + - USER_UID=1000 + - USER_GID=1000 + - DISABLE_SSH=false + - START_SSH_SERVER=true + - SSH_PORT=2222 + - SSH_LISTEN_PORT=2222 + ports: + - "3000:3000" + - "2222:2222" diff --git a/compose-files/podgrab.yml b/compose-files/podgrab.yml new file mode 100644 index 0000000..95762ed --- /dev/null +++ b/compose-files/podgrab.yml @@ -0,0 +1,21 @@ +version: "2.1" + +volumes: + podgrab-config: + driver: local + podgrab-data: + driver: local + +services: + podgrab: + image: akhilrex/podgrab + container_name: podgrab + environment: + - CHECK_FREQUENCY=240 + # - PASSWORD=password ## Uncomment to enable basic authentication, username = podgrab + volumes: + - podgrab-config:/config + - podgrab-data:/assets + ports: + - 8080:8080 + restart: unless-stopped