Compare commits

...

10 Commits

2 changed files with 16 additions and 23 deletions

3
.gitignore vendored
View File

@@ -1 +1,2 @@
secrets.env
.env
*.env

View File

@@ -2,51 +2,43 @@
networks:
frontend:
driver: bridge
enable_ipv6: true
enable_ipv4: true
backend:
driver: bridge
enable_ipv6: true
enable_ipv4: true
# volumes:
# grocy.vol:
secrets:
generic:
file: ./secrets.env
# secrets:
# generic:
# file: ./secrets.env
services:
gitea:
image: docker.gitea.com/gitea:latest
image: docker.gitea.com/gitea:1.25.2
container_name: gitea
environment:
- USER_UID=$(id -u git)
- USER_GID=$(id -u git)
restart: always
networks:
- frontend
volumes:
- ~/.storage/containers/gitea.vol:/data
- /home/git/.ssh:/data/git/.ssh
- /etc/localtime:/etc/localtime:ro
ports:
- 0.0.0.0:3000:3000
- "[::]:3000:3000"
- 127.0.0.1:2222:22
- "[::1]:22:22"
- 3000:3000
- "2222:22"
opengist:
image: ghcr.io/thomiceli/opengist:latest
image: ghcr.io/thomiceli/opengist:1
container_name: opengist
restart: unless-stopped
ports:
- 6157:6157
- 2222:2223
- 2223:2222
volumes:
- ~/.storage/containers/opengist.vol:/opengist
- ~/.config/opengist/config.yml:/config.yml
# - ~/.config/opengist/config.yml:/config.yml
- /etc/localtime:/etc/localtime:ro
environment:
OG_LOG_LEVEL: warn
UID: $(id -u git)
GID: $(id -u git)
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