Skip to content

Commit

Permalink
Update docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 20, 2024
1 parent dd0ad14 commit 0f7b7de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker-compose-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
- oasis-node-data:/node/data:z
- ./docker/envoy.yaml:/etc/envoy/envoy.yaml:z
explorer-postgres:
image: docker.io/library/postgres:16.0-alpine
image: docker.io/library/postgres:16.4-alpine
restart: always
volumes:
- explorer-postgres-data:/var/lib/postgresql/data:z
Expand All @@ -43,7 +43,7 @@ services:
POSTGRES_USER: oasis
POSTGRES_DATABASE: oasis
explorer-clickhouse:
image: docker.io/clickhouse/clickhouse-server:23.1.3-alpine
image: docker.io/clickhouse/clickhouse-server:23.12.6-alpine
restart: always
volumes:
- explorer-clickhouse-data:/var/lib/clickhouse:z
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- oasis-node-data:/node/data:z
- ./docker/envoy.yaml:/etc/envoy/envoy.yaml:z
explorer-postgres:
image: docker.io/library/postgres:16.0-alpine
image: docker.io/library/postgres:16.4-alpine
restart: always
volumes:
- explorer-postgres-data:/var/lib/postgresql/data
Expand All @@ -48,7 +48,7 @@ services:
POSTGRES_USER: oasis
POSTGRES_DATABASE: oasis
explorer-clickhouse:
image: docker.io/clickhouse/clickhouse-server:23.1.3-alpine
image: docker.io/clickhouse/clickhouse-server:23.12.6-alpine
restart: always
volumes:
- explorer-clickhouse-data:/var/lib/clickhouse:z
Expand Down
4 changes: 2 additions & 2 deletions docker/oasis-explorer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.20 AS build-env
FROM docker.io/library/golang:1.23 AS build-env
WORKDIR /app

ARG COMMIT="2861780b1dcc9ea6d876621ad059cea6dcd77955"
Expand All @@ -10,7 +10,7 @@ RUN git clone https://github.com/everstake/oasis-explorer.git /app && \
ENV CGO_ENABLED 0
RUN go build

FROM docker.io/library/alpine:3.17.1
FROM docker.io/library/alpine:3.20.3
RUN apk add --no-cache ca-certificates
COPY --from=build-env /app/oasisTracker /oasisTracker
COPY --from=build-env app/dao/postgres/migrations /dao/postgres/migrations
Expand Down

0 comments on commit 0f7b7de

Please sign in to comment.