]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - support/docker/production/docker-entrypoint.sh
Remove unnecessary env variables now we have a .env file
[github/Chocobozzz/PeerTube.git] / support / docker / production / docker-entrypoint.sh
1 #!/bin/sh
2 set -e
3
4 # Populate config directory
5 if [ -z "$(ls -A /config)" ]; then
6 cp /app/support/docker/production/config/* /config
7 fi
8
9 # Always copy default and custom env configuration file, in cases where new keys were added
10 cp /app/config/default.yaml /config
11 cp /app/support/docker/production/config/custom-environment-variables.yaml /config
12 chown -R peertube:peertube /config
13
14 # first arg is `-f` or `--some-option`
15 # or first arg is `something.conf`
16 if [ "${1#-}" != "$1" ] || [ "${1%.conf}" != "$1" ]; then
17 set -- npm "$@"
18 fi
19
20 # allow the container to be started with `--user`
21 if [ "$1" = 'npm' -a "$(id -u)" = '0' ]; then
22 chown -R peertube:peertube /data
23 exec gosu peertube "$0" "$@"
24 fi
25
26 exec "$@"