-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,8 +58,7 @@ docker run --detach --name=cam --rm --volume "$(pwd):/dataset" \ | |
This command will create a new Docker container, running in the background. | ||
(run `docker ps -a`, in order to see it). | ||
If you want to run docker interactively and see all the logs, | ||
you can just disable | ||
[detached mode](https://docs.docker.com/language/golang/run-containers/#run-in-detached-mode) | ||
you can just disable [detached mode][detached] | ||
by removing the `--detach` option from the command. | ||
|
||
The dataset will be created in the current directory (may take some time, | ||
|
@@ -165,5 +164,8 @@ sudo mkswap /swapfile | |
sudo swapon /swapfile | ||
``` | ||
|
||
Then, create a [personal access token](https://docs.github.com/en/[email protected]/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) | ||
in GitHub, and run Docker as explained above. | ||
Then, create a [personal access token][PAT] in GitHub, | ||
and run Docker as explained above. | ||
|
||
[PAT]: https://docs.github.com/en/[email protected]/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens | ||
[detached]: https://docs.docker.com/language/golang/run-containers/#run-in-detached-mode |