Skip to content

Commit 7941afe

Browse files
committed
Update dockerfile and fix some mistakes in readme file
1 parent b59418f commit 7941afe

2 files changed

Lines changed: 15 additions & 13 deletions

File tree

Containers/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ docker run --name postgre-11 -e POSTGRES_PASSWORD=<your password> -e POSTGRES_HO
125125

126126
Here,
127127

128-
``` --name postgre-17``` - name of the container
128+
``` --name postgre-11``` - name of the container
129129

130130
```-e POSTGRES_PASSWORD=<your password>``` - superuser password, required by base image.
131131

@@ -255,7 +255,7 @@ Here,
255255

256256
``` -e FIREBIRD_DATABASE_PAGE_SIZE=8192``` - page size for database.
257257

258-
```-p 3053:3050``` - host-to-container port mapping. We use following pattern - first three digits of standard port (3050) and major version of Firebird, e.g. 3, 4 ,5.
258+
```-p 3053:3050``` - host-to-container port mapping. We use following pattern - first three digits of standard port (3050) and major version of Firebird.
259259

260260
Pair ```FIREBIRD_USER``` / ```FIREBIRD_PASSWORD``` can be omitted, in this case initialization script will handle it and create 'dotest' user with 'dotest' password.
261261

Containers/mssql/do-mssql-2017

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ FROM mcr.microsoft.com/mssql/server:2017-CU31-ubuntu-18.04
22

33
# See https://github.com/microsoft/mssql-docker/blob/master/linux/preview/examples/mssql-agent-fts-ha-tools/Dockerfile
44
# for details
5-
RUN export DEBIAN_FRONTEND=noninteractive && \
6-
apt-get update && \
7-
#Actualize time zone database
8-
apt-get install -y tzdata && \
9-
apt-get install -yq curl apt-transport-https && \
10-
apt-get install -y gnupg2 && \
11-
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \
12-
curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list | tee /etc/apt/sources.list.d/mssql-server.list && \
13-
apt-get update && \apt-get install -y mssql-server-fts && \
14-
apt-get clean && \
15-
rm -rf /var/lib/apt/lists
5+
RUN export DEBIAN_FRONTEND=noninteractive
6+
RUN apt-get update
7+
8+
#Actualize time zone database
9+
RUN apt-get install -y tzdata
10+
RUN apt-get install -yq curl apt-transport-https
11+
RUN apt-get install -y gnupg2
12+
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
13+
RUN curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list | tee /etc/apt/sources.list.d/mssql-server.list
14+
RUN apt-get update
15+
RUN apt-get install -y mssql-server-fts
16+
RUN apt-get clean
17+
RUN rm -rf /var/lib/apt/lists
1618

1719
# Create a config directory
1820
RUN mkdir -p /usr/config

0 commit comments

Comments
 (0)