←back to thread

1101 points codesmash | 1 comments | | HN request time: 0.248s | source
Show context
dev_l1x_be ◴[] No.45140036[source]
What is the current way of running a dokcer container as a systemd service? Is it podman?
replies(1): >>45140121 #
ethagnawl ◴[] No.45140121[source]
Just create a unit file that starts/stops/restarts/etc. the container.
replies(1): >>45140426 #
dev_l1x_be ◴[] No.45140426[source]
what do you mean exactly? What is the tool that you invoke? Or you use systemd's container executing ability?
replies(1): >>45142967 #
1. ethagnawl ◴[] No.45142967[source]
Whenever I've done this, I've used the system service's ExecStart|Stop directives to run a Bash script which handles starting/stopping the container (e.g. `docker run ...`) and any other setup teardown behavior that's appropriate.