]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - support/docker/production/docker-entrypoint.sh
Improve docker doc and fix missing keys on update
[github/Chocobozzz/PeerTube.git] / support / docker / production / docker-entrypoint.sh
index 8ee968b3da833d9f9bbff3a62595b4a63c5030a8..447cf7fa40a23f2dfdd9ab0aaa22da250c18e681 100755 (executable)
@@ -4,10 +4,12 @@ set -e
 # Populate config directory
 if [ -z "$(ls -A /config)" ]; then
     cp /app/support/docker/production/config/* /config
-    cp /app/config/default.yaml /config
-    chown -R peertube:peertube /config
 fi
 
+# Always copy default configuration file, in cases where new keys were added
+cp /app/config/default.yaml /config
+chown -R peertube:peertube /config
+
 # first arg is `-f` or `--some-option`
 # or first arg is `something.conf`
 if [ "${1#-}" != "$1" ] || [ "${1%.conf}" != "$1" ]; then