From c35f941882344654fca30886fc3f0f8375d4c283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 04:29:13 +0100 Subject: [PATCH] fix: correct asciinema entrypoint command for server startup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed server endpoints not starting by correcting the entrypoint wrapper script to use the proper command: /sbin/tini -- /opt/app/bin/server Changes: - Updated entrypoint-wrapper.sh to exec /sbin/tini instead of /opt/app/bin/asciinema - Removed incorrect command: ["start"] from compose.yaml - Custom CSS injection now working with proper server startup - Both main (port 4000) and admin (port 4002) endpoints now running The custom Pivoine theme CSS is successfully injected at container startup and served via both app.css and hashed app-*.css files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 1 - asciinema/entrypoint-wrapper.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index f2a5b23..0724621 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -4,7 +4,6 @@ services: container_name: ${ASCIINEMA_COMPOSE_PROJECT_NAME}_app restart: unless-stopped entrypoint: ["/entrypoint-wrapper.sh"] - command: ["start"] networks: - compose_network extra_hosts: diff --git a/asciinema/entrypoint-wrapper.sh b/asciinema/entrypoint-wrapper.sh index fb4b930..59afca2 100755 --- a/asciinema/entrypoint-wrapper.sh +++ b/asciinema/entrypoint-wrapper.sh @@ -14,4 +14,4 @@ if [ -f /opt/app/lib/asciinema-1.0.0/priv/static/assets/custom.css ]; then fi # Execute the original entrypoint -exec /opt/app/bin/asciinema "$@" +exec /sbin/tini -- /opt/app/bin/server "$@"