mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
add minio mc command, update minio
This commit is contained in:
parent
d12d7cf592
commit
e8bc685974
4 changed files with 12 additions and 18 deletions
|
|
@ -4,14 +4,14 @@ set -e
|
|||
|
||||
export DOCKER_BUILDKIT=1
|
||||
|
||||
versions=("8.1" "8.2" "8.3")
|
||||
versions=("8.1")
|
||||
|
||||
for version in "${versions[@]}"; do
|
||||
echo "building haze-php-$version"
|
||||
docker build --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version" -f "php/Dockerfile" php
|
||||
echo "building haze-php-$version-dbg"
|
||||
docker build --build-arg BASE_IMAGE=icewind1991/php-dbg --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version-dbg" -f "php/Dockerfile" php
|
||||
done
|
||||
#for version in "${versions[@]}"; do
|
||||
# echo "building haze-php-$version"
|
||||
# docker build --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version" -f "php/Dockerfile" php
|
||||
# echo "building haze-php-$version-dbg"
|
||||
# docker build --build-arg BASE_IMAGE=icewind1991/php-dbg --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version-dbg" -f "php/Dockerfile" php
|
||||
#done
|
||||
|
||||
for version in "${versions[@]}"; do
|
||||
echo "building haze-$version"
|
||||
|
|
|
|||
|
|
@ -43,6 +43,9 @@ RUN DEBIAN_FRONTEND=noninteractive ;\
|
|||
apt-get update && \
|
||||
apt-get install --assume-yes blackfire
|
||||
|
||||
RUN curl https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/bin/mc && \
|
||||
chmod +x /usr/bin/mc
|
||||
|
||||
ADD configs/autoconfig_mariadb.php configs/autoconfig_mysql.php configs/autoconfig_pgsql.php configs/autoconfig_oci.php configs/s3.php configs/s3m.php configs/s3mb.php configs/swift.php configs/swiftv3.php configs/azure.php configs/config.php /root/
|
||||
ADD configs/nginx-app.conf /etc/nginx/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue