1
0
mirror of https://github.com/rlister/dockerfiles.git synced 2025-12-12 17:26:15 +00:00

add note about systemd bind mount

This commit is contained in:
Richard Lister
2015-12-16 10:04:11 -05:00
parent 1a0859fae4
commit 01b7bb1ba8

View File

@@ -4,4 +4,15 @@ This is a simple installation on debian of the
[AWS EC2 Run Command agent](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/execute-remote-commands.html).
Running this container on an ec2 instance with correct IAM permissions
will allow the running of commands _inside the container_.
will allow the running of commands _inside the container_.
## Example uses
### Run systemd commands on CoreOS
```
docker run \
-v /var/run/dbus:/var/run/dbus \
-v /run/systemd:/run/systemd \
rlister/amazon-ssm-agent:latest
```