mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 06:25:57 +03:00
[GH-ISSUE #5] Constant docker restarts causing failure to load #116
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#116
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @brandonbrewer32 on GitHub (Feb 18, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/5
I had this issue on 2 separate devices , spent time with Claude AI, found the solution.
docker compose down
cd /opt/proxcenter
cp docker-compose.yml docker-compose.yml.bak #create backup
nano docker-compose.yml
#modify:
frontend:
image: ghcr.io/adminsyspro/proxcenter-frontend:${VERSION:-latest}
container_name: proxcenter-frontend
command: ["/bin/sh", "-c", "node server.js & node ws-proxy.js & wait"] #add this line
restart: unless-stopped
#save and exit
docker compose down
docker compose up -d
Proxmox VE 9.1.5 - community edition
ProxCenter V1.2.0 - community edition
@adminsyspro commented on GitHub (Feb 18, 2026):
This has been fixed in commit
7916eb8:concurrently(npm dev dependency) with a standard shell pattern (node server.js & node ws-proxy.js & wait) in the Dockerfile CMD.concurrentlywhich could fail to execute in certain environments (Alpine + non-root user).This is essentially the same fix you discovered — thank you for reporting and sharing the workaround! If you previously added a
command:override in your docker-compose.yml, you can safely remove it after updating.Available in the latest Docker image.