Container FAQ
Image Pull Failed
Servers in China cannot connect to Docker Hub and need to configure mirror acceleration.
Docker
Apps -> Docker -> Manage -> Basic Settings -> Registry Mirrors, add the mirror address (built-in presets are available, e.g. https://docker.1ms.run), then click Save.
You can also edit the configuration file directly under the Configuration File tab (/etc/docker/daemon.json):
{
"registry-mirrors": [
"https://docker.1ms.run"
]
}Podman
Apps -> Podman -> Manage -> Registry Configuration, add at the end:
[[registry]]
location = "docker.io"
[[registry.mirror]]
location = "docker.1ms.run"For mirror acceleration addresses, you can use 1ms Mirror or other services.
Compose Startup Failed
- Watch the live output in the terminal that pops up when you click Start, or check the logs of the containers it creates in Container -> Containers
- Common causes:
- Port occupied: Modify the mapped port
- Image pull failed: Configure mirror acceleration
- Configuration error: Check docker-compose.yml syntax
Container Inaccessible
- Check if the container is running: View status in Container -> Containers list
- Check if port mapping is correct
- Check if the firewall has allowed the mapped host port
Container Cannot Access External Network
Check Docker network configuration:
docker network ls
docker network inspect bridgeWhen you create a container through the panel, the network selector defaults to the built-in acepanel-network (you can pick a different one). Compose stacks are not forced onto this network — Docker Compose creates its own per-project network unless the compose file specifies otherwise. To inspect a network:
docker network inspect acepanel-networkacepanel-network is used by the panel itself, so it is protected from deletion: its Delete button is disabled in Container -> Networks, it is skipped during bulk delete, and the backend rejects any request to remove it to avoid breaking container orchestration.
Data Persistence
Data will be lost after container deletion. Use volume mounts to persist data:
Add volumes in the compose configuration:
volumes:
- ./data:/app/dataView Container Logs
docker logs container-name-or-id
docker logs -f container-name-or-id # Real-time viewOr click Logs in the panel Container -> Containers list.
