Compare commits
20 Commits
1ed91f56ed
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
363c84dc0b | ||
|
|
429f9f4b2b | ||
|
|
e605db5021 | ||
|
|
47c92728d3 | ||
|
|
a8717b7aed | ||
|
|
cc9b9dfdad | ||
|
|
f73917a0f3 | ||
|
|
78d2ae0ffa | ||
|
|
1d9755a1cd | ||
|
|
b942675b78 | ||
|
|
24a1e24cb5 | ||
|
|
3220afa80a | ||
|
|
745ffa80f2 | ||
|
|
a9b2f078d0 | ||
|
|
25ceb441d4
|
||
|
|
171b3aa113
|
||
|
|
f2e09ff322
|
||
|
|
a4578890ad
|
||
|
|
a25e1c68ce
|
||
|
|
9442f4e90e
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.env
|
||||||
|
*.env
|
||||||
60
compose.yml
Normal file
60
compose.yml
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
---
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
driver: bridge
|
||||||
|
backend:
|
||||||
|
driver: bridge
|
||||||
|
# volumes:
|
||||||
|
# grocy.vol:
|
||||||
|
# secrets:
|
||||||
|
# generic:
|
||||||
|
# file: ./secrets.env
|
||||||
|
services:
|
||||||
|
gitea:
|
||||||
|
image: docker.gitea.com/gitea:1.25.2
|
||||||
|
container_name: gitea
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
volumes:
|
||||||
|
- ~/.storage/containers/gitea.vol:/data
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
ports:
|
||||||
|
- 3000:3000
|
||||||
|
- "2222:22"
|
||||||
|
opengist:
|
||||||
|
image: ghcr.io/thomiceli/opengist:1
|
||||||
|
container_name: opengist
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 6157:6157
|
||||||
|
- 2223:2222
|
||||||
|
volumes:
|
||||||
|
- ~/.storage/containers/opengist.vol:/opengist
|
||||||
|
# - ~/.config/opengist/config.yml:/config.yml
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
environment:
|
||||||
|
OG_GITEA_CLIENT_KEY: ${OG_GITEA_CLIENT_KEY:?Provide gitea client key}
|
||||||
|
OG_GITEA_SECRET: ${OG_GITEA_SECRET:?Provide gitea secret}
|
||||||
|
OG_GITEA_URL: ${OG_GITEA_URL:?Provide gitea FQDN URL}
|
||||||
|
# secrets:
|
||||||
|
# - generic
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
# @TODO the below services are in the future meant to be in a LAN homeserver or tailscale/headscale exit node
|
||||||
|
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/localtime:/etc/localtime:ro
|
||||||
|
ports:
|
||||||
|
- 9283:9283
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
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
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
# 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
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
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)
|
|
||||||
Reference in New Issue
Block a user