mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
10 lines
215 B
Bash
Executable File
10 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# This is in attempt to preserve the original behavior of the Dockerfile,
|
|
# while also supporting the lscr.io /config directory
|
|
[ ! -d "/app/config" ] && ln -s /config /app/config
|
|
|
|
node server.js
|