Skip to content

Commit bfbdc75

Browse files
committed
Verified/updated docker installs
1 parent 18335b3 commit bfbdc75

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

docker/debian9/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ FROM debian:9
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

5-
# install: php / mysql / postgres / sqlite / tools / mssql deps
5+
# install: php / mysql / postgres / tools / mssql deps
66
RUN apt-get update && apt-get -y install \
77
php-cli php-xml \
88
mariadb-server mariadb-client php-mysql \
99
postgresql php-pgsql \
1010
postgresql-9.6-postgis-2.3 \
11-
sqlite php-sqlite3 \
1211
git wget
1312

1413
# install run script

docker/ubuntu16/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ FROM ubuntu:16.04
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

5-
# install: php / mysql / postgres / sqlite / tools / mssql deps
5+
# install: php / mysql / postgres / tools / mssql deps
66
RUN apt-get update && apt-get -y install \
77
php-cli php-xml \
88
mariadb-server mariadb-client php-mysql \
99
postgresql php-pgsql \
1010
postgresql-9.5-postgis-2.2 \
11-
sqlite php-sqlite3 \
1211
git wget \
1312
curl apt-transport-https debconf-utils sudo
1413

@@ -24,7 +23,7 @@ RUN ACCEPT_EULA=Y apt-get install -y msodbcsql mssql-tools
2423

2524
# install pdo_sqlsrv
2625
RUN apt-get -y install php-pear build-essential unixodbc-dev php-dev
27-
RUN pecl install pdo_sqlsrv
26+
RUN pecl install pdo_sqlsrv-5.3.0
2827
RUN echo extension=pdo_sqlsrv.so > /etc/php/7.0/mods-available/pdo_sqlsrv.ini
2928
RUN phpenmod pdo_sqlsrv
3029

docker/ubuntu18/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ FROM ubuntu:18.04
22

33
ARG DEBIAN_FRONTEND=noninteractive
44

5-
# install: php / mysql / postgres / sqlite / tools
5+
# install: php / mysql / postgres / tools
66
RUN apt-get update && apt-get -y install \
77
php-cli php-xml \
88
mysql-server mysql-client php-mysql \
99
postgresql php-pgsql \
1010
postgresql-10-postgis-2.4 \
11-
sqlite php-sqlite3 \
1211
git wget
1312

1413
# install locales

0 commit comments

Comments
 (0)