diff --git a/docker-hub/deactivate-account.md b/docker-hub/deactivate-account.md index 57a513856e..ee5a85be48 100644 --- a/docker-hub/deactivate-account.md +++ b/docker-hub/deactivate-account.md @@ -30,6 +30,7 @@ Before deactivating your Docker Hub account, please complete the following: Once you have completed all the steps above, you may deactivate your account. On Docker Hub, go to **_Your Account_** > **Accounts Settings** > **Deactivate Account**. > This cannot be undone! Be sure you've gathered all the data you need from your account before deactivating it. +{: .warning } ## Deactivating an organization @@ -48,3 +49,4 @@ Before deactivating an organization, please complete the following: Once you have completed all the steps above, you may deactivate your organization. On Docker Hub, go to **Organizations** > **_Your Organization_** > **Settings** > **Deactivate Org**. > This cannot be undone! Be sure you've gathered all the data you need from your organization before deactivating it. +{: .warning } diff --git a/get-started/part2.md b/get-started/part2.md index 1203ab1140..6d8ce43ee3 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -90,7 +90,7 @@ This `Dockerfile` refers to a couple of files we haven't created yet, namely Create two more files, `requirements.txt` and `app.py`, and put them in the same folder with the `Dockerfile`. This completes our app, which as you can see is quite simple. When the above `Dockerfile` is built into an image, `app.py` and -`requirements.txt` is present because of that `Dockerfile`'s `COPY` command, +`requirements.txt` are present because of that `Dockerfile`'s `COPY` command, and the output from `app.py` is accessible over HTTP thanks to the `EXPOSE` command.