Skip to content

Commit

Permalink
Update docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 30, 2024
1 parent a6672e2 commit f9a86a6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docker-compose-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- ./docker/genesis-testnet.json:/genesis.json:z
- ./docker/oasis-explorer/config-testnet.json:/.secrets/config.json:z
envoy:
image: docker.io/envoyproxy/envoy:v1.21.3
image: docker.io/envoyproxy/envoy:v1.29.0
ports:
- '127.0.0.1:42280:42280'
- '127.0.0.1:42281:42281'
Expand All @@ -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.1-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.2-alpine
restart: always
volumes:
- explorer-clickhouse-data:/var/lib/clickhouse:z
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
- ./docker/genesis-local.json:/genesis.json:z
- ./docker/oasis-explorer/config-local.json:/.secrets/config.json:z
envoy:
image: docker.io/envoyproxy/envoy:v1.21.3
image: docker.io/envoyproxy/envoy:v1.29.0
ports:
- '42280:42280'
- '42281:42281'
Expand All @@ -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.1-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.2-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.21 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.19.1
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 f9a86a6

Please sign in to comment.