Skip to content

Fixed numbering of list and formatting #2

Merged
merged 1 commit into from
Aug 8, 2024
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
Fixed numbering of list and formatting
Fixed the auto-numbering of the list in 'getting started with docker' and added some additional formatting changes.
walterct committed Aug 8, 2024
commit 6d3ae0e1db6cf3b044fc6b4e0b3196946b15179c
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ Files & notes for a series of docker tutorials for coworkers.
## 1. Getting Started with Docker

1. Install [Docker Desktop](https://www.docker.com/products/docker-desktop/)
3. Open a terminal. Some options:
2. Open a terminal. Some options:
* Windows: Lots of options
* Use the Docker Desktop terminal
* Or use the Windows Subsystem for Linux (WSL) with Ubuntu or another distro
@@ -15,9 +15,10 @@ Files & notes for a series of docker tutorials for coworkers.
* Or PowerShell
* Mac: Use the Terminal app
* Linux: I think you know already. By the way, is anyone using desktop Linux?
4. Run `docker run hello-world` to make sure Docker is installed and working.
* You may need to first add your career/user account to the group 'docker-users' in Local Users/Groups in Computer Management if you receive the error
'docker client must be run with elevated privileges' (after adding you will need to apply and log out/in to apply the change)
3. Run `docker run hello-world` to make sure Docker is installed and working.
* You may need to first add your career/user account to the group 'docker-users' in Local Users/Groups in Computer Management if you receive the error:
**'docker client must be run with elevated privileges'**
* After adding your account, you will need to click 'Apply' and log out to apply the changes

## 2. Running Python inside Docker