Summary
Running Packmind with rootless container.
Problem
When running Packmind with Podman or with Docker Compose with rootless container, the frontend can't start due to lack of privilege for mapping ports under 1024.
Running the container produces the error:
[Error: INSTALLATION FAILED: repo packmind-ai not found](nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied))
Proposed fix
Change Nginx frontend port to 8080 and change docker-compose settings for the frontend to :
frontend:
image: packmind/frontend:${PACKMIND_TAG:-latest}
container_name: packmind-frontend
ports:
- '${FRONTEND_PUBLIC_PORT:-8081}:8080'
depends_on:
- api
- mcp-server
restart: unless-stopped
Summary
Running Packmind with rootless container.
Problem
When running Packmind with Podman or with Docker Compose with rootless container, the frontend can't start due to lack of privilege for mapping ports under 1024.
Running the container produces the error:
Proposed fix
Change Nginx frontend port to 8080 and change docker-compose settings for the frontend to :