Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Fix typo (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrachev authored and Mano Marks committed Oct 16, 2018
1 parent 0fab3d4 commit 6b70e30
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion developer-tools/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ There are many different versions of Ruby in use. Ruby applications can be based

In contrast, there are also many many versions of Python in use, but the majority of applications use the lastest 2.X or 3.X versions. Similarly, Java applications use the last two major releases of either Java released by Oracle or OpenJDK.

Earlier versions of Ruby are used in production because upgrading presents challenges such as, critical gems are not backward-compatible. Debugging tools like pry, rubocop, byebug... do work on many versions, but not consistently on all Ruby verisons.
Earlier versions of Ruby are used in production because upgrading presents challenges such as, critical gems are not backward-compatible. Debugging tools like pry, rubocop, byebug... do work on many versions, but not consistently on all Ruby versions.

As a result, Ruby developers (and people deploying Ruby apps) rely on tools like [rvm](https://rvm.io/) or [rbenv](https://github.com/rbenv/rbenv) to install a specific version of Ruby. These tools enable developers to switch between different versions of Ruby, and between different sets of gems (when different applications have conflicting requirements).

Expand Down
4 changes: 2 additions & 2 deletions dockercon-us-2017/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This repo contains the series of hands-on labs presented at DockerCon 2017 in Austin. They are designed to help you gain experience in various Docker features, products, and solutions. Depending on your experience, each lab requires between 30-45 minutes to complete. They range in difficulty from easy to advanced.

At the Hands-on Labs at DockerCon 2017 in Austin, we issued [Microsoft Azure](https://azure.microsoft.com/) credentials and hostnames. Many of these labs assumes you have Azure VMs and Docker Datacenter licenses. You can sign up for Azure resources through the Azure site. Each lab will identify prerequists at the begining of the lab. For Linux base nodes you
At the Hands-on Labs at DockerCon 2017 in Austin, we issued [Microsoft Azure](https://azure.microsoft.com/) credentials and hostnames. Many of these labs assumes you have Azure VMs and Docker Datacenter licenses. You can sign up for Azure resources through the Azure site. Each lab will identify prerequists at the beginning of the lab. For Linux base nodes you

You can get a trial license for Docker Datacenter through [Docker Store](https://store.docker.com/search?offering=enterprise&type=edition).

Expand Down Expand Up @@ -140,4 +140,4 @@ This lab is aimed at ops and system admins. It steps through packaging an ASP.NE
## [DockerCon 2017 Austin Workshops](workshop-slides/README.md)

At DockerCon 2017 in Austin, we had [10 workshops](https://2017.dockercon.com/workshops/), each lasting about 3 hours.
At DockerCon 2017 in Austin, we had [10 workshops](https://2017.dockercon.com/workshops/), each lasting about 3 hours.
2 changes: 1 addition & 1 deletion dockercon-us-2017/docker-cloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Specify the Dockerfile path (in Step 7):
+ Enter **/voting/Dockerfile** for the **Dockerfile Path**

### Check to make sure the repositories were created
If you click the **Repositories** menu on the left you should see both the ```voting``` and ```results``` respositories were created.
If you click the **Repositories** menu on the left you should see both the ```voting``` and ```results``` repositories were created.

Well done! You've created two new repos and configured them to autobuild whenever new changes are pushed to the associated GitHub repos.

Expand Down
4 changes: 2 additions & 2 deletions dockercon-us-2017/docker-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ It will take up to 30 seconds to install.

4. Log in to UCP by going to `https://<node0-public-dns>` in your browswer

Depending on what browser you are using, you will receive a warning about the connection. Proceed through to the UCP URL. The warning is occuring because we UCP uses privately signed certificates by default. In a production installation we would add our own certificates that would be trusted by our browser.
Depending on what browser you are using, you will receive a warning about the connection. Proceed through to the UCP URL. The warning is occurring because we UCP uses privately signed certificates by default. In a production installation we would add our own certificates that would be trusted by our browser.

![](images/private.png)

Expand Down Expand Up @@ -203,7 +203,7 @@ A [Docker Stack](https://docs.docker.com/engine/reference/commandline/stack_depl
In this section we will deploy the [Docker Pets](https://github.com/mark-church/docker-paas) application using a compose file. In the following sections we will add features to our compose file and make our application progressively more complex and feature-full. Docker Pets is a simple web app that records votes for different animals and uses a persistent backend to record the votes. It's comprised of two images:

- **`chrch/docker-pets`** is a front-end Python Flask container that serves up random images of housepets, depending on the given configuration
- **`consul`** (which will be used in a later compose file) is a back-end KV store that stores the number of visits that the web services recieve. It's configured to bootstrap itself with 3 replicas so that we have fault tolerant persistence.
- **`consul`** (which will be used in a later compose file) is a back-end KV store that stores the number of visits that the web services receive. It's configured to bootstrap itself with 3 replicas so that we have fault tolerant persistence.

This is the first iteration of our compose file for the Docker Pets application:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Creating network pets_backend
Creating service pets_web
```

6. Go to your browser and in the address pane type in `<node0-public-ip>`. You should see that the app has succesfully deployed with the new change.
6. Go to your browser and in the address pane type in `<node0-public-ip>`. You should see that the app has successfully deployed with the new change.

### <a name="Task 3.2"></a>Task 3.2: Rescan the Remediated Application

Expand Down
2 changes: 1 addition & 1 deletion security/apparmor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ For more information, see the [official AppArmor documentation wiki](http://wiki

In this step you will check the status of AppArmor on your Docker Host and learn how to identify whether or not Docker containers are running with an AppArmor profile.

1. View the status of AppArmor on your Docker Host with the `apparmor_status` command. You may need to preceed the command with `sudo`.
1. View the status of AppArmor on your Docker Host with the `apparmor_status` command. You may need to precede the command with `sudo`.

```
$ apparmor_status
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The Customizer Library adds sections, settings and controls to the customizer ba

At the moment there is only one custom control (for textarea), but look for additional controls as the library matures.

The Customizer Library includes additional classes and helper functions for creating inline styles and loading Google fonts. These functions and classes were developed by [The Theme Foundry](https://thethemefoundry.com/) for their theme [Make](https://thethemefoundry.com/wordpress-themes/make/) and I've found them quite useful in my own projects. However, I'm considering moving them into seperate modules in order to make the core library as focused as possible. Feedback on this is welcome.
The Customizer Library includes additional classes and helper functions for creating inline styles and loading Google fonts. These functions and classes were developed by [The Theme Foundry](https://thethemefoundry.com/) for their theme [Make](https://thethemefoundry.com/wordpress-themes/make/) and I've found them quite useful in my own projects. However, I'm considering moving them into separate modules in order to make the core library as focused as possible. Feedback on this is welcome.

## Installation

Expand Down Expand Up @@ -390,4 +390,4 @@ Development
1.0.0
===

* Public Release
* Public Release
2 changes: 1 addition & 1 deletion security/capabilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ usage: capsh [args ...]
--killit=<n> send signal(n) to child
--forkfor=<n> fork and make child sleep for <n> sec
== re-exec(capsh) with args as for --
-- remaing arguments are for /bin/bash
-- remaining arguments are for /bin/bash
(without -- [capsh] will simply exit(0))
```

Expand Down
2 changes: 1 addition & 1 deletion security/scanning/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Be sure to substitute `nigelpoulton` with your own Docker ID in the steps below.
v1: digest: sha256:99588bc8883c9...5f600a3e9f8d5cd size: 528
```

Congratualtions. In this step you tagged and pushed an image to your newly
Congratulations. In this step you tagged and pushed an image to your newly
created *private repo* on Docker Hub.

# <a name="results"></a>Step 4: View scan results
Expand Down
2 changes: 1 addition & 1 deletion security/trust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ Now we'll explore delegation roles in notary. Delegation roles are a subset of t

This command will allow the collaborator to push any target (from `--all-paths`) to the `targets/releases` role if they can sign with their private key `delegation.key` in order to produce a valid signature that can be verified by `delegation.crt`'s public key material.

Be aware that this commmand only stages the delegation role addition.
Be aware that this command only stages the delegation role addition.

5. Publish the addition of the delegation role

Expand Down

0 comments on commit 6b70e30

Please sign in to comment.