AAP: Fix PHP config
Pause older image builds
This commit is contained in:
parent
6250915323
commit
2f8186fe24
5 changed files with 1955 additions and 9 deletions
|
@ -32,7 +32,7 @@ RUN apk add --update --no-cache \
|
|||
php8-zlib
|
||||
|
||||
## Configure apache
|
||||
COPY assets/php.ini /etc/php7/php.ini
|
||||
COPY assets/php8.ini /etc/php8/php.ini
|
||||
COPY assets/httpd.conf /etc/apache2/httpd.conf
|
||||
RUN chown apache:apache /run/apache2
|
||||
|
||||
|
|
1946
aap/assets/php8.ini
Normal file
1946
aap/assets/php8.ini
Normal file
File diff suppressed because it is too large
Load diff
|
@ -15,10 +15,10 @@ services:
|
|||
build: ./toolbox
|
||||
image: elfrinjo/toolbox:latest
|
||||
|
||||
agate:
|
||||
build: ./agate
|
||||
image: elfrinjo/agate:latest
|
||||
# agate:
|
||||
# build: ./agate
|
||||
# image: elfrinjo/agate:latest
|
||||
|
||||
pocketbase:
|
||||
build: ./pocketbase
|
||||
image: elfrinjo/pocketbase:latest
|
||||
# pocketbase:
|
||||
# build: ./pocketbase
|
||||
# image: elfrinjo/pocketbase:latest
|
||||
|
|
|
@ -9,5 +9,5 @@ else
|
|||
enc=""
|
||||
fi
|
||||
|
||||
/app/pocketbase ${enc} --dir /data migrate
|
||||
/app/pocketbase ${enc} --dir /data serve
|
||||
# /app/pocketbase ${enc} --dir /data migrate
|
||||
/app/pocketbase ${enc} --http 0.0.0.0:8090 --dir /data serve
|
||||
|
|
Reference in a new issue