These scripts and files were added a long time ago, and are now
either replaced with something else, or managed through GTM.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
* Update Networking overview file
I feel it's better to change the current title (which is just ["Overview"](https://docs.docker.com/network/)) to "Networking"
This will add more meaning and also be more consistent with other overview pages such as [Orchestration](https://docs.docker.com/get-started/orchestration/) and [Develop with Docker](https://docs.docker.com/develop/)
* Updated the title to match the toc entry
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
The existing description leads the reader to believe that dropping CAP_SYS_PTRACE already blocks all ptraces. That is not true, it only blocks ptracing arbitrary processes. Ptracing child processes is still allowed.
The install instructions are missing a critical step that requires the user to be added to the "docker-users" group. Without this, the user will be prevented from running Docker containers.
The tabs on the "help by project" card were wrapping on
iPhone, so reducing the padding to prevent this.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This patch:
- removes the icon images from the landing page, instead setting
them as a background-image through css.
- replaced the "community-resources" and "play-with-docker" styles
in favor of a conditional style (based on cards linking to external
websites)
- changes the minimal height of cards for mobile devices (there was
a big amount of padding on the smallest size, which didn't add
much value).
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
- Add generic font classes where missing (except for FontAwesome cfonts)
- Combined some rules with their shorthand form
- Removed unneeded units (0px -> 0)
- Fix some invalid values
- Commented out empty styles in _github.scss
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
* Add mention of Learn menu, to re-turn tutorial
Signed-off-by: Charles Arehart <charlie@carehart.org>
* Minor style edits
* Update Mac Install
Add the 'Learn' option to the Mac install page
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
`--force` in `rm --force` claimed to remove the container (which `rm` obviously does). `--force` allows a container to be removed even if it's still running.