Accessing Dockpeek
Open in browser: http://<SERVER_IP>:3420
Login:
- Username:
admin - Password: stored inside
/root/dockpeek/.env
Retrieve credentials:
cat /root/dockpeek/.env
Important Files and Directories
- Install Path:
/root/dockpeek - Compose File:
/root/dockpeek/docker-compose.yml - Environment File:
/root/dockpeek/.env - Docker Socket:
/var/run/docker.sock
Managing the Stack
Change into the installation directory:
cd /root/dockpeek
Check container status:
docker compose ps
View logs:
docker compose logs -f
Restart the application:
docker compose restart
Stop the stack:
docker compose down
Start the stack:
docker compose up -d