Primera part

This commit is contained in:
Guillem Hernandez Sola
2026-06-30 12:13:19 +02:00
parent 8d62044321
commit bebb2969f8
5 changed files with 108 additions and 0 deletions

22
dockge/docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
# /opt/stacks/dockge/docker-compose.yml
services:
dockge:
image: louislam/dockge:1
container_name: dockge
restart: unless-stopped
ports:
- "127.0.0.1:5001:5001"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data/dockge:/app/data
- ${STACKS_DIR}:${STACKS_DIR}
environment:
- DOCKGE_STACKS_DIR=${STACKS_DIR}
networks:
- shared_net
networks:
shared_net:
external: true
name: shared_net

22
gotify/docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
# /opt/stacks/gotify/docker-compose.yml
services:
gotify:
image: gotify/server:latest
container_name: gotify
restart: unless-stopped
ports:
- "127.0.0.1:8070:80"
volumes:
- ./data/gotify:/app/data
environment:
- GOTIFY_DEFAULTUSER_NAME=${GOTIFY_USER}
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_PASSWORD}
- TZ=${TZ}
networks:
- shared_net
networks:
shared_net:
external: true
name: shared_net

View File

@@ -0,0 +1,22 @@
# /opt/stacks/homepage/docker-compose.yml
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: unless-stopped
ports:
- "127.0.0.1:3000:3000"
volumes:
- ./data/homepage:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=${TZ}
networks:
- shared_net
networks:
shared_net:
external: true
name: shared_net

View File

@@ -0,0 +1,21 @@
# /opt/stacks/nginx-proxy-manager/docker-compose.yml
services:
nginx-proxy-manager:
image: jc21/nginx-proxy-manager:latest
container_name: nginx-proxy-manager
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "127.0.0.1:81:81"
volumes:
- ./data/nginx-proxy-manager/data:/data
- ./data/nginx-proxy-manager/letsencrypt:/etc/letsencrypt
networks:
- shared_net
networks:
shared_net:
external: true
name: shared_net

View File

@@ -0,0 +1,21 @@
# /opt/stacks/uptime-kuma/docker-compose.yml
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
restart: unless-stopped
ports:
- "127.0.0.1:3001:3001"
volumes:
- ./data/uptime-kuma:/app/data
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- TZ=${TZ}
networks:
- shared_net
networks:
shared_net:
external: true
name: shared_net