-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add minimal documentation; fix nvidia-smi issue; fix dock moniker (#8)
* Add minimal documentation; fix nvidia-smi issue; fix dock moniker * Update quickstart.md * Update quickstart.md
- Loading branch information
1 parent
b9178cc
commit 2696afa
Showing
4 changed files
with
92 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# docker-utils Quick Start | ||
|
||
## Install | ||
```bash | ||
$ pip3 install -U dockerutils | ||
|
||
# Show installed version and latest version | ||
$ pip3 search dockerutils | ||
|
||
# If you are unable to install the latest version, try: | ||
$ pip3 install -U --force-reinstall dockerutils==<latest version> | ||
|
||
# Show help | ||
$ create-dock -h | ||
|
||
# Create remote dock instance using defaults. You will be prompted before creation. | ||
$ create-dock | ||
``` | ||
|
||
|
||
## Additional Commands | ||
```bash | ||
|
||
# Connect to remote secure docker | ||
$ source dock <ip|moniker> | ||
|
||
# Sync local files to remote instance | ||
$ sync-up | ||
|
||
# Sync remote changes to local worksation | ||
$ sync-down | ||
|
||
# After 'source dock <ip|moniker>' | ||
$ bin/notebook | ||
$ bin/dev | ||
|
||
# Disconnect from remote secure docker | ||
$ castoff | ||
|
||
``` |
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
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
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