aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/production/docker-entrypoint.sh
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-30 08:45:34 +0200
committerChocobozzz <me@florianbigard.com>2018-05-30 08:45:34 +0200
commitdf9e1d697839c2b3228cf23483b613cf94172809 (patch)
tree332e1fab46a4bff83f1b657d120841163d62af2f /support/docker/production/docker-entrypoint.sh
parent18eb286e0bc7ebd793d7eeb475d815b3a588404f (diff)
downloadPeerTube-df9e1d697839c2b3228cf23483b613cf94172809.tar.gz
PeerTube-df9e1d697839c2b3228cf23483b613cf94172809.tar.zst
PeerTube-df9e1d697839c2b3228cf23483b613cf94172809.zip
Fix docker config custom env copy
Diffstat (limited to 'support/docker/production/docker-entrypoint.sh')
-rwxr-xr-xsupport/docker/production/docker-entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/docker/production/docker-entrypoint.sh b/support/docker/production/docker-entrypoint.sh
index 888fd8f34..6dbbfddf6 100755
--- a/support/docker/production/docker-entrypoint.sh
+++ b/support/docker/production/docker-entrypoint.sh
@@ -8,7 +8,7 @@ fi
8 8
9# Always copy default and custom env configuration file, in cases where new keys were added 9# Always copy default and custom env configuration file, in cases where new keys were added
10cp /app/config/default.yaml /config 10cp /app/config/default.yaml /config
11cp /app/config/custom-environment-variables.yaml /config 11cp /app/support/docker/production/config/custom-environment-variables.yaml /config
12chown -R peertube:peertube /config 12chown -R peertube:peertube /config
13 13
14# first arg is `-f` or `--some-option` 14# first arg is `-f` or `--some-option`