longjie12315 opened a new issue, #2972:
URL: https://github.com/apache/apisix-dashboard/issues/2972
### Issue description
docker-compose.yml
```
version: "3.1"
services:
etcd:
hostname: etcd
image: bitnami/etcd:3.4.35
environment:
- ALLOW_NONE_AUTHENTICATION=yes
ports:
- 2379:2379
- 2380:2380
deploy:
replicas: 1
restart_policy:
condition: on-failure
networks:
- egmp
apisix:
hostname: apisix
image: apache/apisix:3.11.0-debian
ports:
- 9180:9180
- 9080:9080
volumes:
- ./apisix/conf/config.yaml:/usr/local/apisix/conf/config.yaml
deploy:
replicas: 1
restart_policy:
condition: on-failure
networks:
- egmp
apisix-dashboard:
hostname: apisix-dashboard
image: apache/apisix-dashboard:3.0.1-centos
ports:
- 19000:9000
volumes:
-
./apisix-dashboard/conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml
- ./apisix-dashboard/logs:/usr/local/apisix-dashboard/logs
deploy:
replicas: 1
restart_policy:
condition: on-failure
networks:
- egmp
networks:
egmp:
```
conf.yaml
```
conf:
listen:
port: 9000
etcd:
endpoints:
- "http://etcd:2379"
```


### Expected behavior
我需要如何配置能正确运行
### How to Reproduce
使用docker命令
docker stack deploy -c docker-compose.yml egmp
### Screenshots
_No response_
### Environment
- apisix version (cmd: `apisix version`):
- OS (cmd: `uname -a`):
- OpenResty / Nginx version (cmd: `nginx -V` or `openresty -V`):
- etcd version, if have (cmd: run `etcd --version`):
- apisix-dashboard version, if have:
- Browser version, if have:
### Additional context
_No response_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]