mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add Vagrantfile, YAML data file, and systemd unit files to customize Docker (listen on TCP socket) on CentOS Atomic Host Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
13 lines
489 B
Text
13 lines
489 B
Text
[Service]
|
|
ExecStart=
|
|
ExecStart=/usr/bin/dockerd-current -H fd:// \
|
|
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current \
|
|
--default-runtime=docker-runc \
|
|
--exec-opt native.cgroupdriver=systemd \
|
|
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current \
|
|
$OPTIONS \
|
|
$DOCKER_STORAGE_OPTIONS \
|
|
$DOCKER_NETWORK_OPTIONS \
|
|
$ADD_REGISTRY \
|
|
$BLOCK_REGISTRY \
|
|
$INSECURE_REGISTRY
|