forked from coop-cloud/lemmy
9 lines
208 B
Bash
9 lines
208 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -f /config/config.hjson ]; then
|
|
cp /config/config.hjson.tmpl /config/config.hjson
|
|
fi
|
|
|
|
# https://github.com/LemmyNet/lemmy/blob/main/docker/prod/Dockerfile
|
|
su lemmy -s /bin/sh -c /app/lemmy
|