starbase-81/docker-entrypoint.sh

10 lines
266 B
Bash
Raw Normal View History

2023-04-21 00:53:59 +00:00
#!/bin/sh
# Escape slashes
2023-04-21 04:47:52 +00:00
LOGO=${LOGO//\//\\/}
2023-04-21 04:43:30 +00:00
sed -i -e 's/PAGETITLE = "My Website"/'"${TITLE}"'/g' /app/index.html
sed -i -e 's/HTMLTITLE/'"${TITLE}"'/g' /app/src/variables.ts
sed -i -e 's/PAGEICON = "\/logo\.png"/'"${LOGO}"'/g' /app/src/variables.ts
2023-04-21 04:43:30 +00:00
2023-04-21 00:53:59 +00:00
exec "$@"