fixed the bug in kubespray/contrib/offline/manage-offline-files.sh

pull/10512/head
reza 2023-10-09 10:48:16 +03:30 committed by Florian Ruynat
parent acb86c23f9
commit abaddb4c9b
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ sudo "${runtime}" container inspect nginx >/dev/null 2>&1
if [ $? -ne 0 ]; then
sudo "${runtime}" run \
--restart=always -d -p ${NGINX_PORT}:80 \
--volume "${OFFLINE_FILES_DIR}:/usr/share/nginx/html/download" \
--volume "${OFFLINE_FILES_DIR}":/usr/share/nginx/html/download \
--volume "${CURRENT_DIR}"/nginx.conf:/etc/nginx/nginx.conf \
--name nginx nginx:alpine
fi