switch to apache image

This commit is contained in:
Michael Balsillie 2023-04-17 04:31:08 +02:00
parent 1d1c246aad
commit d8ad483115
3 changed files with 6 additions and 5 deletions

View File

@ -1,12 +1,12 @@
# Base image
ARG NEXTCLOUD_VER
FROM nextcloud:${NEXTCLOUD_VER}-fpm
FROM nextcloud:${NEXTCLOUD_VER}-apache
# Install extra utilities
RUN apt update && \
apt install -y --no-install-recommends \
sudo \
# sudo \
nano \
nfs-common \
libreoffice \

View File

@ -5,6 +5,6 @@ REGISTRY="code.balsillie.net"
ORG="containers"
IMAGE="nextcloud-supervisord"
IMAGE_FULL="$REGISTRY/$ORG/$IMAGE"
docker build --pull -f ./Dockerfile --build-arg NEXTCLOUD_VER=$NEXTCLOUD_VER -t "$IMAGE_FULL:$NEXTCLOUD_VER" -t "$IMAGE_FULL:$DATE_TAG" .
docker build --no-cache --pull -f ./Dockerfile --build-arg NEXTCLOUD_VER=$NEXTCLOUD_VER -t "$IMAGE_FULL:$NEXTCLOUD_VER" -t "$IMAGE_FULL:$DATE_TAG" .
docker push -a "$IMAGE_FULL"

View File

@ -7,12 +7,13 @@ logfile_maxbytes=50MB ; maximum size of logfile before
logfile_backups=10 ; number of backed up logfiles
loglevel=error
[program:php-fpm]
[program:apache2]
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
command=php-fpm
# command=php-fpm
command=apache2-foreground
[program:cron]
stdout_logfile=/dev/stdout