foskey51 opened a new issue, #3220:
URL: https://github.com/apache/apisix-dashboard/issues/3220
### Issue description
Error log:
```
[2025-10-03T06:46:01.674Z] [+] Running 0/1
⠙ etcd Pulling
9.2s
[2025-10-03T06:46:01.709Z] [+] Running 1/1
✘ etcd Error manifest for bitnami/etcd:3.5 not found: mani...
9.2s
[2025-10-03T06:46:01.710Z] Error response from daemon: manifest for
bitnami/etcd:3.5 not found: manifest unknown: manifest unknown
[2025-10-03T06:46:01.717Z] Stop (9383 ms): Run: docker compose
--project-name apisix-dashboard_devcontainer -f
/home/user/Documents/apisix-dashboard/.devcontainer/docker-compose.yml -f
/home/user/.config/Code/User/globalStorage/ms-vscode-remote.remote-containers/data/docker-compose/docker-compose.devcontainer.build-1759460499921.yml
-f
/home/user/.config/Code/User/globalStorage/ms-vscode-remote.remote-containers/data/docker-compose/docker-compose.devcontainer.containerFeatures-1759460500450-9ee1fd68-d881-494f-9825-20cf77bac2c2.yml
up -d --no-recreate
```
The file ``e2e/server/docker-compose.common.yml`` currently references:
```yaml
etcd:
image: bitnami/etcd:3.5
```
This image no longer exists in the [Bitnami docker hub
repo](https://hub.docker.com/r/bitnami/etcd), causing container build failures.
As per the notice in [Bitnami docker hub
repo](https://hub.docker.com/r/bitnami/etcd), the images have been deprecated
and moved to
[bitnamilegacy/etcd](https://hub.docker.com/r/bitnamilegacy/etcd).So just by
changing
`bitnami/etcd:3.5` --> `bitnamilegacy/etcd:3.5` works.
You may also consider using
[gcr.io/etcd-development/etcd](https://gcr.io/etcd-development/etcd) or
[quay.io/coreos/etcd](https://quay.io/coreos/etcd) ,as
<img width="1110" height="152" alt="Image"
src="https://github.com/user-attachments/assets/5117cb6a-5927-495c-88fe-a5f9db199213"
/>
stated in (https://github.com/etcd-io/etcd/releases/tag/v3.5.23).
### Expected behavior
Dev container build should succeed without any errors.
### How to Reproduce
1. Clone the current repository in vs-code
2. press ctrl+P and type ">Dev Containers: Reopen in Container"
### Screenshots
NA
### Environment
NA
### 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]