summaryrefslogtreecommitdiff
path: root/docs/tutorials/rootless_tutorial.md
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2020-03-09 13:06:53 -0400
committerGitHub <noreply@github.com>2020-03-09 13:06:53 -0400
commit342d99fbc2a990dcd4c122b45a8bb1a14059a338 (patch)
tree8db5e86db5bfdc7d4da844a301bfa8180ac5baa9 /docs/tutorials/rootless_tutorial.md
parent6b3f447c8ec8ac385160234308d7fdeaf6b127e6 (diff)
parent3c473681e39b8344f3f11fe73b09d8657bdd9f52 (diff)
downloadpodman-342d99fbc2a990dcd4c122b45a8bb1a14059a338.tar.gz
podman-342d99fbc2a990dcd4c122b45a8bb1a14059a338.tar.bz2
podman-342d99fbc2a990dcd4c122b45a8bb1a14059a338.zip
Merge pull request #5427 from containers/systemd-default
generate systemd: add `default.target` to INSTALL
Diffstat (limited to 'docs/tutorials/rootless_tutorial.md')
-rw-r--r--docs/tutorials/rootless_tutorial.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/tutorials/rootless_tutorial.md b/docs/tutorials/rootless_tutorial.md
index 5978d1210..8e048c746 100644
--- a/docs/tutorials/rootless_tutorial.md
+++ b/docs/tutorials/rootless_tutorial.md
@@ -110,34 +110,6 @@ The Podman configuration files for root reside in `/usr/share/containers` with o
The default authorization file used by the `podman login` and `podman logout` commands reside in `${XDG_RUNTIME_DIR}/containers/auth.json`.
-## Systemd unit for rootless container
-
-```
-[Unit]
-Description=nginx
-Requires=user@1001.service
-After=user@1001.service
-[Service]
-Type=simple
-KillMode=none
-MemoryMax=200M
-ExecStartPre=-/usr/bin/podman rm -f nginx
-ExecStartPre=/usr/bin/podman pull nginx
-ExecStart=/usr/bin/podman run --name=nginx -p 8080:80 -v /home/nginx/html:/usr/share/nginx/html:Z nginx
-ExecStop=/usr/bin/podman stop nginx
-Restart=always
-User=nginx
-Group=nginx
-[Install]
-WantedBy=multi-user.target
-```
-
-This example unit will launch a nginx container using the existing user nginx with id 1001, serving static content from /home/nginx/html and limited to 200MB of RAM.
-
-You can use all the usual systemd flags to control the process, including capabilities and cgroup directives to limit memory or CPU.
-
-See #3866 for more details.
-
## More information
If you are still experiencing problems running Podman in a rootless environment, please refer to the [Shortcomings of Rootless Podman](https://github.com/containers/libpod/blob/master/rootless.md) page which lists known issues and solutions to known issues in this environment.