From 60e118be310df21e9c5d5b1d9cf751f553da61e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 09:53:46 +0100 Subject: [PATCH] fix: mount theme files to correct static directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Static files are in /opt/app/lib/asciinema-1.0.0/priv/static/ not /opt/app/priv/static/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index c7f87f0..fef5cab 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -8,9 +8,9 @@ services: volumes: - asciinema_data:/var/opt/asciinema - ./custom.exs:/opt/app/etc/custom.exs:ro - - ./theme/custom.css:/opt/app/priv/static/css/custom.css:ro - - ./theme/favicon.svg:/opt/app/priv/static/images/favicon-custom.svg:ro - - ./theme/custom.js:/opt/app/priv/static/js/custom.js:ro + - ./theme/custom.css:/opt/app/lib/asciinema-1.0.0/priv/static/css/custom.css:ro + - ./theme/favicon.svg:/opt/app/lib/asciinema-1.0.0/priv/static/images/favicon-custom.svg:ro + - ./theme/custom.js:/opt/app/lib/asciinema-1.0.0/priv/static/js/custom.js:ro environment: SECRET_KEY_BASE: ${ASCIINEMA_SECRET_KEY} URL_HOST: ${ASCIINEMA_TRAEFIK_HOST}