first commit

This commit is contained in:
Octopus Octopus 2023-11-26 15:59:24 -06:00
commit a2532dd7b0
2 changed files with 51 additions and 0 deletions

30
compose-files/gitea.yml Normal file
View File

@ -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"

21
compose-files/podgrab.yml Normal file
View File

@ -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