Created
January 11, 2018 17:56
-
-
Save eriknelson/aeaa0e1fb27e4a33cd60b49e886c25a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@host-172-16-120-150 ~]# cat /etc/sysconfig/docker | |
# /etc/sysconfig/docker | |
# Modify these options if you want to change the way the docker daemon runs | |
OPTIONS=' --selinux-enabled --insecure-registry=172.30.0.0/16 --log-driver=journald --signature-verification=False' | |
if [ -z "${DOCKER_CERT_PATH}" ]; then | |
DOCKER_CERT_PATH=/etc/docker | |
fi | |
# Do not add registries in this file anymore. Use /etc/containers/registries.conf | |
# from the atomic-registries package. | |
# | |
# On an SELinux system, if you remove the --selinux-enabled option, you | |
# also need to turn on the docker_transition_unconfined boolean. | |
# setsebool -P docker_transition_unconfined 1 | |
# Location used for temporary files, such as those created by | |
# docker load and build operations. Default is /var/lib/docker/tmp | |
# Can be overriden by setting the following environment variable. | |
# DOCKER_TMPDIR=/var/tmp | |
# Controls the /etc/cron.daily/docker-logrotate cron job status. | |
# To disable, uncomment the line below. | |
# LOGROTATE=false | |
# docker-latest daemon can be used by starting the docker-latest unitfile. | |
# To use docker-latest client, uncomment below lines | |
#DOCKERBINARY=/usr/bin/docker-latest | |
#DOCKERDBINARY=/usr/bin/dockerd-latest | |
#DOCKER_CONTAINERD_BINARY=/usr/bin/docker-containerd-latest | |
#DOCKER_CONTAINERD_SHIM_BINARY=/usr/bin/docker-containerd-shim-latest | |
ADD_REGISTRY='--add-registry brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888 --add-registry registry.access.redhat.com' | |
BLOCK_REGISTRY='--block-registry registry.hacker.com' | |
INSECURE_REGISTRY='--insecure-registry brew-pulp-docker01.web.prod.ext.phx2.redhat.com:8888 --insecure-registry virt-openshift-05.lab.eng.nay.redhat.com:5000 --insecure-registry virt-openshift-05.lab.eng.nay.redhat.com:5001 --insecure-registry registry.reg-aws.openshift.com:443 --insecure-registry asb-registry.usersys.redhat.com:5000' | |
HTTP_PROXY='http://file.rdu.redhat.com:3128' | |
HTTPS_PROXY='http://file.rdu.redhat.com:3128' | |
NO_PROXY='.centralci.eng.rdu2.redhat.com,.cluster.local,.svc,169.254.169.254,172.16.120.150,172.16.120.90' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment