본문 바로가기
카테고리 없음

🥰 docker daemon.json 샘플

by Knowledge Store In Hyunsoft 2020. 9. 4.

위치 :/etc/docker/daemon.json

{
  "authorization-plugins": [],
  "data-root": "",
  "dns": [],
  "dns-opts": [],
  "dns-search": [],
  "exec-opts": [],
  "exec-root": "",
  "experimental": false,
  "features": {},
  "storage-driver": "",
  "storage-opts": [],
  "labels": [],
  "live-restore": true,
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "10m",
    "max-file":"5",
    "labels": "somelabel",
    "env": "os,customer"
  },
  "mtu": 0,
  "pidfile": "",
  "cluster-store": "",
  "cluster-store-opts": {},
  "cluster-advertise": "",
  "max-concurrent-downloads": 3,
  "max-concurrent-uploads": 5,
  "default-shm-size": "64M",
  "shutdown-timeout": 15,
  "debug": true,
  "hosts": [],
  "log-level": "",
  "tls": true,
  "tlsverify": true,
  "tlscacert": "",
  "tlscert": "",
  "tlskey": "",
  "swarm-default-advertise-addr": "",
  "api-cors-header": "",
  "selinux-enabled": false,
  "userns-remap": "",
  "group": "",
  "cgroup-parent": "",
  "default-ulimits": {
    "nofile": {
      "Name": "nofile",
      "Hard": 64000,
      "Soft": 64000
    }
  },
  "init": false,
  "init-path": "/usr/libexec/docker-init",
  "ipv6": false,
  "iptables": false,
  "ip-forward": false,
  "ip-masq": false,
  "userland-proxy": false,
  "userland-proxy-path": "/usr/libexec/docker-proxy",
  "ip": "0.0.0.0",
  "bridge": "",
  "bip": "",
  "fixed-cidr": "",
  "fixed-cidr-v6": "",
  "default-gateway": "",
  "default-gateway-v6": "",
  "icc": false,
  "raw-logs": false,
  "allow-nondistributable-artifacts": [],
  "registry-mirrors": [],
  "seccomp-profile": "",
  "insecure-registries": [],
  "no-new-privileges": false,
  "default-runtime": "runc",
  "oom-score-adjust": -500,
  "node-generic-resources": ["NVIDIA-GPU=UUID1", "NVIDIA-GPU=UUID2"],
  "runtimes": {
    "cc-runtime": {
      "path": "/usr/bin/cc-runtime"
    },
    "custom": {
      "path": "/usr/local/bin/my-runc-replacement",
      "runtimeArgs": [
        "--debug"
      ]
    }
  },
  "default-address-pools":[
    {"base":"172.80.0.0/16","size":24},
    {"base":"172.90.0.0/16","size":24}
  ]
}
  • debug: true로 설정하면 데몬을 디버그 모드로 변경합니다.
  • cluster-store: 새 주소로 검색 저장소를 다시로드합니다.
  • cluster-store-opts: 새 옵션을 사용하여 검색 저장소를 다시로드합니다.
  • cluster-advertise: 재로드 후 공지 된 주소를 수정합니다.
  • labels: 데몬 레이블을 새 레이블 세트로 대체합니다.
  • live-restore: 데몬 다운 타임 동안 컨테이너를 활성 상태로 유지합니다 .
  • max-concurrent-downloads: 각 pull에 대한 최대 동시 다운로드를 업데이트합니다.
  • max-concurrent-uploads: 각 푸시에 대한 최대 동시 업로드를 업데이트합니다.
  • default-runtime: 컨테이너 생성시 지정되지 않은 경우 사용할 런타임을 업데이트합니다. 기본값은 공식 도커 패키지와 함께 제공되는 런타임 인 ​​"default"입니다.
  • runtimes: 컨테이너를 실행하는 데 사용할 수있는 사용 가능한 OCI 런타임 목록을 업데이트합니다.
  • authorization-plugin: 사용할 인증 플러그인을 지정합니다.
  • allow-nondistributable-artifacts: 데몬이 배포 불가능한 아티팩트를 푸시 할 레지스트리 세트를 새 레지스트리 세트로 바꿉니다.
  • insecure-registries: 데몬의 비보안 레지스트리를 새로운 비보안 레지스트리 세트로 대체합니다. 데몬 구성의 일부 기존 안전하지 않은 레지스트리가 새로 다시로드 된 안전하지 않은 저장소에없는 경우 이러한 기존 레지스트리는 데몬의 구성에서 제거됩니다.
  • registry-mirrors: 데몬 레지스트리 미러를 새로운 레지스트리 미러 세트로 대체합니다. 데몬 구성의 일부 기존 레지스트리 미러가 새로 다시로드 된 레지스트리 미러에없는 경우 이러한 기존 레지스트리 미러가 데몬 구성에서 제거됩니다.
  • shutdown-timeout: 데몬의 기존 구성 제한 시간을 모든 컨테이너를 종료하기위한 새 제한 시간으로 바꿉니다.
  • features: 특정 기능을 명시 적으로 활성화 또는 비활성화합니다.
728x90

댓글