Skip to content

Fixed Docker docs to specify correct mount points #8506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions doc/basics/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ To run the docker image:
.. code-block::

docker run -e CORE_API_PORT=8085 -e CORE_API_KEY="changeme" \
-v ~/.Tribler:/state -v ~/downloads/TriblerDownloads:/downloads \
-v ~/.Tribler:/home/ubuntu/.Tribler \
-v ~/downloads/TriblerDownloads:/home/ubuntu/Downloads \
-v $XDG_CACHE_HOME/tmp/:$XDG_CACHE_HOME/tmp/ -v /run:/run \
--security-opt "apparmor:unconfined" \
--net="host" \
Expand All @@ -41,7 +42,8 @@ To run the docker image:
.. code-block::

docker run -e CORE_API_PORT=8085 -e CORE_API_KEY="changeme" \
-v ~/.Tribler:/state -v ~/downloads/TriblerDownloads:/downloads \
-v ~/.Tribler:/home/ubuntu/.Tribler \
-v ~/downloads/TriblerDownloads:/home/ubuntu/Downloads \
--net="host" -it ghcr.io/tribler/tribler:latest -s

You can then open Tribler in your web browser at the URL:
Expand Down
Loading