From dc0bc061f86ff7b8c076fdc6bccbb9b077d089a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 02:10:00 +0100 Subject: [PATCH] fix: use compose_network for asciinema stack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed network reference from ${NETWORK_NAME} variable to hardcoded compose_network to fix deployment issue where arty doesn't export environment variables to docker compose. Changes: - Network: ${NETWORK_NAME} → compose_network - Removed external network declaration (inherited from root) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 185dbfa..f75ca60 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -4,7 +4,7 @@ services: container_name: ${ASCIINEMA_COMPOSE_PROJECT_NAME}_app restart: unless-stopped networks: - - ${NETWORK_NAME} + - compose_network volumes: - asciinema_data:/var/opt/asciinema - ./theme/custom.css:/app/assets/css/custom.css:ro @@ -44,7 +44,3 @@ services: volumes: asciinema_data: name: ${ASCIINEMA_COMPOSE_PROJECT_NAME}_data - -networks: - ${NETWORK_NAME}: - external: true