Skip to content

Commit

Permalink
Updated to latest tags fixes Issue-417
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabotti committed Feb 15, 2024
1 parent 64978eb commit f1d78e5
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion all-in-one/apisix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

ARG ENABLE_PROXY=false
ARG ETCD_VERSION=v3.5.4
ARG ETCD_VERSION=v3.5.12

# Build Apache APISIX
FROM apache/apisix:latest
Expand Down
2 changes: 1 addition & 1 deletion compose/dashboard-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
- apisix

etcd:
image: bitnami/etcd:3.5.11
image: bitnami/etcd:3.5.12
user: root
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion compose/docker-compose-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
- apisix

etcd:
image: bitnami/etcd:3.5.11
image: bitnami/etcd:3.5.12
user: root
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion compose/docker-compose-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
- apisix

etcd:
image: bitnami/etcd:3.5.11
image: bitnami/etcd:3.5.12
user: root
restart: always
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ docker run -it --name etcd-server \
-p 2380:2380 \
--network apisix \
--ip 172.18.5.10 \
--env ALLOW_NONE_AUTHENTICATION=yes bitnami/etcd:3.4.9
--env ALLOW_NONE_AUTHENTICATION=yes bitnami/etcd:3.5.12
```

> Note:
Expand Down
6 changes: 3 additions & 3 deletions example/docker-compose-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
apisix:

etcd:
image: rancher/coreos-etcd:v3.4.15-arm64
image: rancher/coreos-etcd:v3.4.16-arm64
user: root
restart: always
volumes:
Expand All @@ -53,7 +53,7 @@ services:
apisix:

web1:
image: nginx:1.19.10-alpine
image: nginx:1.25.4-alpine
restart: always
volumes:
- ./upstream/web1.conf:/etc/nginx/nginx.conf
Expand All @@ -65,7 +65,7 @@ services:
apisix:

web2:
image: nginx:1.19.10-alpine
image: nginx:1.25.4-alpine
restart: always
volumes:
- ./upstream/web2.conf:/etc/nginx/nginx.conf
Expand Down
2 changes: 1 addition & 1 deletion example/docker-compose-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
apisix:

web1:
image: nginx:1.25.3-alpine
image: nginx:1.25.4-alpine
restart: always
volumes:
- ./upstream/web1.conf:/etc/nginx/nginx.conf
Expand Down
10 changes: 5 additions & 5 deletions example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
apisix:

etcd:
image: bitnami/etcd:3.5.11
image: bitnami/etcd:3.5.12
restart: always
volumes:
- etcd_data:/bitnami/etcd
Expand All @@ -51,7 +51,7 @@ services:
apisix:

web1:
image: nginx:1.25.3-alpine
image: nginx:1.25.4-alpine
restart: always
volumes:
- ./upstream/web1.conf:/etc/nginx/nginx.conf
Expand All @@ -63,7 +63,7 @@ services:
apisix:

web2:
image: nginx:1.25.3-alpine
image: nginx:1.25.4-alpine
restart: always
volumes:
- ./upstream/web2.conf:/etc/nginx/nginx.conf
Expand All @@ -75,7 +75,7 @@ services:
apisix:

prometheus:
image: prom/prometheus:v2.45.3
image: prom/prometheus:v2.49.1
restart: always
volumes:
- ./prometheus_conf/prometheus.yml:/etc/prometheus/prometheus.yml
Expand All @@ -85,7 +85,7 @@ services:
apisix:

grafana:
image: grafana/grafana:10.3.1
image: grafana/grafana:10.3.3
restart: always
ports:
- "3000:3000"
Expand Down

0 comments on commit f1d78e5

Please sign in to comment.