Files
vulhub/apisix/CVE-2021-45232/docker-compose.yml
Aaron 63285f61aa
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
first commit
2025-09-06 16:08:15 +08:00

31 lines
694 B
YAML

version: "2"
services:
apisix:
image: vulhub/apisix:2.9
volumes:
- ./apisix.yml:/usr/local/apisix/conf/config.yaml
depends_on:
- etcd
ports:
- "9080:9080"
- "9091:9091"
- "9443:9443"
dashboard:
image: vulhub/apisix-dashboard:2.9.0
volumes:
- ./dashboard.yml:/usr/local/apisix-dashboard/conf/conf.yaml
depends_on:
- etcd
ports:
- "9000:9000"
etcd:
image: bitnami/etcd:3.4.15
environment:
ETCD_ENABLE_V2: "true"
ALLOW_NONE_AUTHENTICATION: "yes"
ETCD_ADVERTISE_CLIENT_URLS: "http://0.0.0.0:2379"
ETCD_LISTEN_CLIENT_URLS: "http://0.0.0.0:2379"
ports:
- "2379:2379/tcp"