You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #365: Fix single-command to run demo env with docker
8defabd doc: [#351] fix single-command to run demo env with docker (Jose Celano)
Pull request description:
The single command provided by the documentation to run a demo with docker did not work.
See #351
This PR only fixes that command and improves a little bit the documentation.
In the short term, we need to make some improvements described [here](#361).
In the long term, we need to make UX better. See the issue #351 for some ideas about how we can make it.
Top commit has no ACKs.
Tree-SHA512: d1a665bb9bda511fe866118d343e0cd4422f8ca69ee23cd1430df755411a3f9a847904f539e140a6b1616aadceec20b0b0652236b4b433ba9f5cdb26257a84d1
Copy file name to clipboardExpand all lines: src/lib.rs
+2-16Lines changed: 2 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -136,22 +136,8 @@
136
136
//!
137
137
//! ## Run with docker
138
138
//!
139
-
//! You can run the tracker with a pre-built docker image:
140
-
//!
141
-
//! ```text
142
-
//! mkdir -p ./storage/database \
143
-
//! && mkdir -p ./storage/ssl_certificates \
144
-
//! && export TORRUST_TRACKER_USER_UID=1000 \
145
-
//! && docker run -it \
146
-
//! --user="$TORRUST_TRACKER_USER_UID" \
147
-
//! --publish 6969:6969/udp \
148
-
//! --publish 7070:7070/tcp \
149
-
//! --publish 1212:1212/tcp \
150
-
//! --volume "$(pwd)/storage":"/app/storage" \
151
-
//! torrust/tracker:3.0.0-alpha.3
152
-
//! ```
153
-
//!
154
-
//! For more information about using docker visit the [tracker docker documentation](https://github.com/torrust/torrust-tracker/tree/develop/docker).
139
+
//! You can run the tracker with a pre-built docker image. Please refer to the
0 commit comments