Removed a network driver
This commit is contained in:
41
compose.yml
41
compose.yml
@@ -4,12 +4,13 @@ networks:
|
|||||||
driver: bridge
|
driver: bridge
|
||||||
backend:
|
backend:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
local:
|
|
||||||
driver: host
|
|
||||||
volumes:
|
volumes:
|
||||||
gitea.vol:
|
gitea.vol:
|
||||||
opengist.vol:
|
opengist.vol:
|
||||||
# grocy.vol:
|
# grocy.vol:
|
||||||
|
secrets:
|
||||||
|
generic:
|
||||||
|
file: ./secrets.env
|
||||||
services:
|
services:
|
||||||
gitea:
|
gitea:
|
||||||
image: docker.gitea.com/gitea:latest
|
image: docker.gitea.com/gitea:latest
|
||||||
@@ -19,7 +20,7 @@ services:
|
|||||||
- USER_GID=$(id -u $USER)
|
- USER_GID=$(id -u $USER)
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- gitea
|
- frontend
|
||||||
volumes:
|
volumes:
|
||||||
- gitea.vol:/data
|
- gitea.vol:/data
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
@@ -27,6 +28,24 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
- 2222:2222
|
- 2222:2222
|
||||||
|
opengist:
|
||||||
|
image: ghcr.io/thomiceli/opengist:latest
|
||||||
|
container_name: opengist
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 6157:6157
|
||||||
|
- 2222:2223
|
||||||
|
volumes:
|
||||||
|
- opengist.vol:/opengist
|
||||||
|
- ~/.config/opengist/config.yml:/config.yml"
|
||||||
|
environment:
|
||||||
|
OG_LOG_LEVEL: warn
|
||||||
|
OG_SSH_PORT: 22
|
||||||
|
UID: $(id -u $USER)
|
||||||
|
GID: $(id -u $USER)
|
||||||
|
networks:
|
||||||
|
- frontend
|
||||||
|
# @TODO the below services are in the future meant to be in a LAN homeserver or tailscale/headscale exit node
|
||||||
grocy:
|
grocy:
|
||||||
image: lscr.io/linuxserver/grocy:latest
|
image: lscr.io/linuxserver/grocy:latest
|
||||||
container_name: grocy
|
container_name: grocy
|
||||||
@@ -41,17 +60,5 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 9283:9283
|
- 9283:9283
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
opengist:
|
networks:
|
||||||
image: ghcr.io/thomiceli/opengist:latest
|
- frontend
|
||||||
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