Skip to content

Commit 76db915

Browse files
committed
Update (or add) Dockerfiles
1 parent d6c978d commit 76db915

31 files changed

Lines changed: 230 additions & 7 deletions

amazonlinux/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
mysql_install_db --user=mysql --skip-name-resolve --force >/dev/null
56

67
bash -c "cd /usr; mysqld_safe --user=mysql --datadir=/var/lib/mysql &"

amazonlinux2023/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
mysql_install_db --user=mysql --skip-name-resolve --force >/dev/null
56

67
bash -c "cd /usr; mysqld_safe --user=mysql --datadir=/var/lib/mysql &"

bookworm/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
service mariadb start
56
service memcached start
67

bullseye/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
service mariadb start
56
service memcached start
67

buster/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
chown -R mysql:mysql /var/lib/mysql
56
service mysql start
67
service memcached start

centos7/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
mysql_install_db --user=mysql --skip-name-resolve --force >/dev/null
56

67
bash -c "cd /usr; mysqld_safe --user=mysql --datadir=/var/lib/mysql &"

centos8/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
echo 'default_authentication_plugin = mysql_native_password' >> /etc/my.cnf.d/mysql-server.cnf
56
mysqld --initialize-insecure --user=mysql --skip-name-resolve >/dev/null
67

cloud7/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ RUN dnf -y --allowerasing install\
3434
curl -LO https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.43/GraphicsMagick-1.3.43.tar.xz &&\
3535
tar xf GraphicsMagick-1.3.43.tar.xz && cd GraphicsMagick-1.3.43 &&\
3636
./configure --prefix=/usr --enable-shared --with-perl --disable-opencl --disable-dependency-tracking --without-x --without-ttf --without-wmf --without-magick-plus-plus --without-bzlib --without-zlib --without-dps --without-fpx --without-jpig --without-lcms2 --without-lzma --without-xml --with-quantum-depth=16 && make && make install && cd PerlMagick && perl Makefile.PL && make install && cd ../.. &&\
37-
curl -LO https://imagemagick.org/archive/releases/ImageMagick-7.0.8-68.tar.xz &&\
38-
tar xf ImageMagick-7.0.8-68.tar.xz && cd ImageMagick-7.0.8-68 &&\
39-
./configure --prefix=/usr --enable-shared --with-perl --disable-dependency-tracking --disable-cipher --disable-assert --without-x --without-ttf --without-wmf --without-magick-plus-plus --without-bzlib --without-zlib --without-dps --without-djvu --without-fftw --without-fpx --without-fontconfig --without-freetype --without-jbig --without-lcms --without-lcms2 --without-lqr --without-lzma --without-openexr --without-pango --without-xml && make && make install && cd PerlMagick && perl Makefile.PL && make install && cd ../.. &&\
37+
curl -LO https://imagemagick.org/archive/releases/ImageMagick-7.1.2-12.tar.xz &&\
38+
tar xf ImageMagick-7.1.2-12.tar.xz && cd ImageMagick-7.1.2-12 &&\
39+
./configure --prefix=/usr --enable-shared --with-perl --disable-dependency-tracking --disable-cipher --disable-assert --without-x --without-ttf --without-wmf --without-magick-plus-plus --without-bzlib --without-zlib --without-dps --without-djvu --without-fftw --without-fpx --without-fontconfig --without-freetype --without-jbig --without-lcms --without-lcms2 --without-lqr --without-lzma --without-openexr --without-pango --without-xml --disable-openmp --disable-opencl && make && make install && cd PerlMagick && perl Makefile.PL && make install && cd ../.. &&\
4040
cd .. && rm -rf src && ldconfig /usr/local/lib &&\
4141
curl -sL https://phar.phpunit.de/phpunit-11.phar > phpunit && chmod +x phpunit &&\
4242
mv phpunit /usr/local/bin/ &&\

cloud7/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
echo 'default_authentication_plugin = mysql_native_password' >> /etc/my.cnf.d/mariadb-server.cnf
56
mysql_install_db --user=mysql --skip-name-resolve --force >/dev/null
67

fedora35/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
set -e
33

4+
45
echo 'default_authentication_plugin = mysql_native_password' >> /etc/my.cnf.d/community-mysql-server.cnf
56
mysqld --initialize-insecure --user=mysql --skip-name-resolve >/dev/null
67

0 commit comments

Comments
 (0)