chore/compose-cleanup #8

Merged
forust merged 4 commits from chore/compose-cleanup into main 2026-01-19 23:17:42 +00:00
5 changed files with 14 additions and 14 deletions
Showing only changes of commit f18d4d9be4 - Show all commits
+3 -2
View File
@@ -6,7 +6,7 @@ services:
# ports: # ports:
# - 8000:443 # - 8000:443
volumes: volumes:
- ./data:/app/data - data:/app/data
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
healthcheck: healthcheck:
test: [ "CMD", "curl", "-k", "-f", "https://localhost:443/health" ] test: [ "CMD", "curl", "-k", "-f", "https://localhost:443/health" ]
@@ -41,7 +41,8 @@ services:
- glance.description=Dockmon is a lightweight Docker container monitoring and management tool with a user-friendly web interface. - glance.description=Dockmon is a lightweight Docker container monitoring and management tool with a user-friendly web interface.
networks: networks:
- proxy - proxy
volumes:
data:
networks: networks:
proxy: proxy:
external: true external: true
+2 -2
View File
@@ -7,7 +7,7 @@ services:
- proxy - proxy
volumes: volumes:
- ./config:/etc/headscale - ./config:/etc/headscale
- ./data:/var/lib/headscale - data:/var/lib/headscale
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.docker.network=proxy" - "traefik.docker.network=proxy"
@@ -73,7 +73,7 @@ services:
networks: networks:
- proxy - proxy
volumes: volumes:
headscale-data: data:
networks: networks:
proxy: proxy:
external: true external: true
+2 -4
View File
@@ -5,7 +5,7 @@ services:
restart: always restart: always
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- ./portainer_data:/data - data:/data
ports: ports:
- 9443:9443 - 9443:9443
# - 8000:8000 # Remove if you do not intend to use Edge Agents # - 8000:8000 # Remove if you do not intend to use Edge Agents
@@ -37,9 +37,7 @@ services:
networks: networks:
- proxy - proxy
volumes: volumes:
portainer_data: data:
name: portainer_data
networks: networks:
proxy: proxy:
external: true external: true
+2 -2
View File
@@ -6,7 +6,7 @@ services:
# ports: # ports:
# - "3331:8080" # - "3331:8080"
volumes: volumes:
- ./termix-data:/app/data - data:/app/data
environment: environment:
PORT: "8080" PORT: "8080"
labels: labels:
@@ -35,4 +35,4 @@ networks:
proxy: proxy:
external: true external: true
volumes: volumes:
termix-data: data:
+3 -2
View File
@@ -4,9 +4,8 @@ services:
container_name: uptime-kuma container_name: uptime-kuma
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./data:/app/data - data:/app/data
# ports: # ports:
# <Host Port>:<Container Port>
# - "3001:3001" # - "3001:3001"
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
@@ -27,6 +26,8 @@ services:
- "traefik.http.routers.uptime-kuma-dev.tls=true" - "traefik.http.routers.uptime-kuma-dev.tls=true"
networks: networks:
- proxy - proxy
volumes:
data:
networks: networks:
proxy: proxy:
external: true external: true