test ingress

This commit is contained in:
Alexandre
2022-04-19 11:11:34 +02:00
parent 38671e401e
commit e1fc1ae32f
12 changed files with 250 additions and 5 deletions

View File

@@ -30,8 +30,8 @@ RUN \
# Change data location
grep -rl "/var/www/webtrees" /etc | xargs sed -i 's|/var/www/webtrees|/data/webtrees|g' \
&& sed -i 's|/var/www/webtrees|/data/webtrees|g' /docker-entrypoint.py
# Add end script
# && sed -i '$ d' /docker-entrypoint.py
# Add end script
# && sed -i '$ d' /docker-entrypoint.py
##################
# 3 Install apps #
@@ -53,7 +53,8 @@ RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get
# Manual apps
ENV PACKAGES="jq \
curl \
yamllint"
yamllint \
nginx"
# Automatic apps & bashio
RUN if ! command -v bash >/dev/null 2>/dev/null; then (apt-get update && apt-get install -yqq --no-install-recommends bash || apk add --no-cache bash) >/dev/null; fi \