| systemctl | docker |
|---|---|
| start | container run -d -P $image |
| container start $container | |
| stop | container stop $container |
| restart | container restart $container |
| reload | container kill -s HUP $container |
| status | container inspect $container |
| enable | container update --restart=always $container |
| enable --now | container run -d -P --restart=always $image |
| disable | container update --restart=no $container |