Skip to content

Commit d104d7f

Browse files
committed
Merge branch 'zfs-lib-version' into 'master'
fix: specify the Docker image to get the exact version of ZFS libs # Description The base Docker image changed the Alpine version: docker-library/docker@a2c3530#diff-6310ae22d38094ab53b1f574cf959396c604cd52baa59375d636ba8bd5b8ac8c that probably contains major changes of ZFS libs. This MR specifies the Docker image in order to get the exact version of ZFS libs See merge request postgres-ai/database-lab!253
2 parents 1ac759b + 825e9e3 commit d104d7f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile.dblab

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker:19
1+
FROM docker:19.03.14
22

33
# Install dependencies.
44
RUN apk update && apk add --no-cache bash jq

Dockerfile.dblab-server

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
# --env VERIFICATION_TOKEN=token \
2626
# --env MOUNT_DIR=/var/lib/dblab/clones \
2727
# --env UNIX_SOCKET_DIR=/var/lib/dblab/sockets \
28-
# --env DOCKER_IMAGE=postgres:12-alpine \
28+
# --env DOCKER_IMAGE=postgres:13-alpine \
2929
# --detach \
3030
# postgresai/dblab-server:latest
3131

32-
FROM docker:19
32+
FROM docker:19.03.14
3333

34-
# Install dependecies.
34+
# Install dependencies.
3535
RUN apk update && apk add --no-cache zfs lvm2 bash util-linux
3636

3737
WORKDIR /home/dblab

0 commit comments

Comments
 (0)