Compare commits

..

3 Commits

Author SHA1 Message Date
Alex Tavarez
1ed91f56ed Added an opengist compose file 2025-12-05 13:34:23 -05:00
Alex Tavarez
30e966bf74 Added a grocy compose file 2025-12-05 13:34:03 -05:00
Alex Tavarez
0677ddedee Added a gitea compose file 2025-12-05 13:31:29 -05:00
3 changed files with 56 additions and 0 deletions

20
gitea/compose.yml Normal file
View File

@@ -0,0 +1,20 @@
---
volumes:
gitea.vol:
services:
gitea:
image: docker.gitea.com/gitea:1.25.2
container_name: gitea
environment:
- USER_UID=$(id -u $USER)
- USER_GID=$(id -u $USER)
restart: always
networks:
- gitea
volumes:
- gitea.vol:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 3000:3000
- 2222:2222

18
grocy/compose.yml Normal file
View File

@@ -0,0 +1,18 @@
---
# volumes:
# grocy.vol:
services:
grocy:
image: lscr.io/linuxserver/grocy:latest
container_name: grocy
environment:
- PUID=$(id -u $USER)
- PGID=$(id -u $USER)
- TZ=Etc/UTC
volumes:
# - grocy.vol:/data
- ~/.config/grocy:/config
- /etc/timezone:/etc/timezone:ro
ports:
- 9283:9283
restart: unless-stopped

18
opengist/compose.yml Normal file
View File

@@ -0,0 +1,18 @@
---
volumes:
opengist.vol:
services:
opengist:
image: ghcr.io/thomiceli/opengist:1.11.1
container_name: opengist
restart: unless-stopped
ports:
- 6157:6157
- 2222:2223
volumes:
- opengist.vol:/opengist
- ~/.config/opengist/config.yml:/config.yml"
environment:
OG_SSH_PORT: 22
UID: $(id -u $USER)
GID: $(id -u $USER)