mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #411] How do I run the web interface #222
Reference in New Issue
Block a user
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 @uguraltinsoy on GitHub (Jul 6, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/411
I ran it with Docker but I couldn't open the web interface, can you help me?

@sigoden commented on GitHub (Jul 7, 2024):
You should learn how to use docker first.
Assuming you are running the command:
docker run -v $(pwd):/data -p 5000:5000 --rm sigoden/dufs /data -A, the web UI will be accessible athttp://127.0.0.1:5000. The-p 5000:5000flag exposes the Docker service's port 5000 to port 5000 on the host machine.@uguraltinsoy commented on GitHub (Jul 7, 2024):
What am I doing wrong?