Fix compose network service placement

This commit is contained in:
2026-08-08 00:05:09 +01:00
parent bcae4bb318
commit 3cba68e256
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -5,6 +5,8 @@ services:
player: player:
image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest} image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest}
restart: unless-stopped restart: unless-stopped
networks:
- pulse_signage
ports: ports:
- "8081:8081" - "8081:8081"
environment: environment:
@@ -14,8 +16,6 @@ services:
volumes: volumes:
- pulse-signage:/app/media - pulse-signage:/app/media
command: ["node", "src/player.js"] command: ["node", "src/player.js"]
networks:
- pulse_signage
+6 -6
View File
@@ -4,6 +4,8 @@ services:
web: web:
image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest} image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest}
restart: unless-stopped restart: unless-stopped
networks:
- pulse_signage
ports: ports:
- "8080:8080" - "8080:8080"
environment: environment:
@@ -24,12 +26,12 @@ services:
depends_on: depends_on:
mysql: mysql:
condition: service_healthy condition: service_healthy
networks:
- pulse_signage
player: player:
image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest} image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest}
restart: unless-stopped restart: unless-stopped
networks:
- pulse_signage
ports: ports:
- "8081:8081" - "8081:8081"
environment: environment:
@@ -48,12 +50,12 @@ services:
depends_on: depends_on:
mysql: mysql:
condition: service_healthy condition: service_healthy
networks:
- pulse_signage
player-bridge: player-bridge:
image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest} image: ${PULSE_SIGNAGE_IMAGE:-git.lzstealth.com/lzstealth/pulse-signage:latest}
restart: unless-stopped restart: unless-stopped
networks:
- pulse_signage
ports: ports:
- "8090:8090" - "8090:8090"
environment: environment:
@@ -68,8 +70,6 @@ services:
depends_on: depends_on:
mysql: mysql:
condition: service_healthy condition: service_healthy
networks:
- pulse_signage
mysql: mysql:
image: mysql:8.4 image: mysql:8.4