Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update docker.io/timescale/timescaledb docker tag to v2.17.2-pg17-oss #5

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TimescaleDB
FROM docker.io/timescale/timescaledb:2.17.2-pg16-bitnami AS timescaledb
FROM docker.io/timescale/timescaledb:2.17.2-pg17-oss AS timescaledb

# Select and copy the last 3 versions of the extension
RUN mkdir -p /tmp/lib /tmp/share /tmp/bin \
Expand All @@ -16,7 +16,7 @@ RUN mkdir -p /tmp/lib /tmp/share /tmp/bin \
RUN echo -e "[INFO] TimescaleDB lib files to be installed: \n$(ls /tmp/lib)"

# PostgreSQL Server
FROM docker.io/bitnami/postgresql:16.4.0 AS postgresql
FROM docker.io/bitnami/postgresql:16.5.0 AS postgresql

# TimescaleDB tools
COPY --from=timescaledb /tmp/bin/* /usr/local/bin/
Expand Down
4 changes: 2 additions & 2 deletions 17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TimescaleDB
FROM docker.io/timescale/timescaledb:2.17.2-pg17-bitnami AS timescaledb
FROM docker.io/timescale/timescaledb:2.17.2-pg17-oss AS timescaledb

# Select and copy the last 3 versions of the extension
RUN mkdir -p /tmp/lib /tmp/share /tmp/bin \
Expand All @@ -16,7 +16,7 @@ RUN mkdir -p /tmp/lib /tmp/share /tmp/bin \
RUN echo -e "[INFO] TimescaleDB lib files to be installed: \n$(ls /tmp/lib)"

# PostgreSQL Server
FROM docker.io/bitnami/postgresql:17.0.0 AS postgresql
FROM docker.io/bitnami/postgresql:17.1.0 AS postgresql

# TimescaleDB tools
COPY --from=timescaledb /tmp/bin/* /usr/local/bin/
Expand Down
Loading