Organize Docker environment examples

This commit is contained in:
2026-08-28 20:20:30 +01:00
parent 7dc895172c
commit c95ddb3de8
2 changed files with 19 additions and 13 deletions
+13 -9
View File
@@ -1,9 +1,11 @@
# Shared application settings # Container images
PULSE_SIGNAGE_WEB_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-web:latest" PULSE_SIGNAGE_WEB_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-web:latest"
PULSE_SIGNAGE_PLAYER_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-player:latest" PULSE_SIGNAGE_PLAYER_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-player:latest"
# Shared security
PULSE_SIGNAGE_SHARED_SECRET="" PULSE_SIGNAGE_SHARED_SECRET=""
# Database settings for the web, player, and bridge services # Database
DB_HOST="mysql" DB_HOST="mysql"
DB_PORT=3306 DB_PORT=3306
DB_NAME="pulse-signage" DB_NAME="pulse-signage"
@@ -11,17 +13,19 @@ DB_USER="pulse-signage"
DB_PASSWORD="signage_password" DB_PASSWORD="signage_password"
MYSQL_ROOT_PASSWORD="root_password" MYSQL_ROOT_PASSWORD="root_password"
# Player settings # Web application
WEB_PUBLIC_URL="http://localhost:8080"
WEB_INTERNAL_URL="http://web:8080"
# Player
PLAYER_IDENTIFIER="player-local" PLAYER_IDENTIFIER="player-local"
PLAYER_PUBLIC_URL="http://localhost:8081" PLAYER_PUBLIC_URL="http://localhost:8081"
PLAYER_INTERNAL_URL="http://player:8081" PLAYER_INTERNAL_URL="http://player:8081"
WEB_PUBLIC_URL="http://localhost:8080"
# Web app bootstrap settings # Player bridge
BRIDGE_INTERNAL_URL="http://player-bridge:8090"
# First-run administrator
DEFAULT_ADMIN_USERNAME="admin" DEFAULT_ADMIN_USERNAME="admin"
DEFAULT_ADMIN_NAME="Admin" DEFAULT_ADMIN_NAME="Admin"
DEFAULT_ADMIN_PASSWORD="password123!" DEFAULT_ADMIN_PASSWORD="password123!"
# Bridge settings for the player-bridge service
WEB_INTERNAL_URL="http://web:8080"
BRIDGE_INTERNAL_URL="http://player-bridge:8090"
+5 -3
View File
@@ -1,11 +1,13 @@
# Shared application settings # Container image
PULSE_SIGNAGE_PLAYER_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-player:latest" PULSE_SIGNAGE_PLAYER_IMAGE="git.lzstealth.com/lzstealth/pulse-signage-player:latest"
# Shared security
PULSE_SIGNAGE_SHARED_SECRET="" PULSE_SIGNAGE_SHARED_SECRET=""
# Player settings # Remote player
PLAYER_IDENTIFIER="player-remote" PLAYER_IDENTIFIER="player-remote"
PLAYER_PUBLIC_URL="http://localhost:8081" PLAYER_PUBLIC_URL="http://localhost:8081"
PLAYER_AGENT_RECONNECT_DELAY_MS=5000 PLAYER_AGENT_RECONNECT_DELAY_MS=5000
# Remote player connectivity settings # Remote bridge connectivity
BRIDGE_PUBLIC_URL="http://player-bridge.example.com:8090" BRIDGE_PUBLIC_URL="http://player-bridge.example.com:8090"