Access
1. Open Homebox in your browser: http://<SERVER_IP>:3100
2. Click Register and create the first user account.
3. For security, disable new registrations after the first account is created.
3.1. Edit /root/homebox/compose.yml.
3.2. Change HBOX_OPTIONS_ALLOW_REGISTRATION: "true" to HBOX_OPTIONS_ALLOW_REGISTRATION: "false".
3.3. Apply the change: cd /root/homebox && docker compose up -d
Important Files and Directories
- Install Path:
/root/homebox - Compose File:
/root/homebox/compose.yml - Environment File:
/root/homebox/.env - Docker Volume:
/var/lib/docker/volumes/homebox_homebox-data
Service Management
View running containers:
docker compose -f /root/homebox/compose.yml ps
Restart Homebox:
docker compose -f /root/homebox/compose.yml restart
View logs:
cd /root/homebox && docker compose logs -f
Stop Homebox:
docker compose -f /root/homebox/compose.yml stop
Start Homebox:
docker compose -f /root/homebox/compose.yml start
Recreate Homebox:
docker compose -f /root/homebox/compose.yml up -d