docker-compose-ha-consul-vault-ui
A docker-compose example of HA Consul + Vault + Vault UI
파일 탐색기
- pihole.md
- vault-auth-by-cidr.md
- vault-for-humans.md
- admin.hcl
- docker.hcl
- apply-admin-policy.sh
- apply-all-policies.sh
- check-latest-versions.sh
- consul-agent.sh
- curl-api.sh
- enable-docker-approle.sh
- enable-docker-secrets-store.sh
- get-admin-token.sh
- graceful-shutdown.sh
- initialize-vault.sh
- pihole.sh
- reconfigure-service.sh
- restore-consul.sh
- set-auth-methods.sh
- stop-vault.sh
- vault-functions.sh
- vault-shell.sh
- index.html
- nginx.conf
- .gitignore
- docker-compose.yml
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
dig
설명 보기 ▼
dig
DNS 조회 유틸리티.
관련 항목: `resolvectl`, `nslookup`, `host`.
더 많은 정보: <https://manned.org/dig>.
dig +short {{example.com}}
호스트이름과 관련된 IP 주소(A 레코드)를 조회하기 :
dig +noall +answer {{example.com}}
지정한 도메인에 대한 상세 응답(A 레코드)을 조회:
dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}
지정한 도메인 이름에 대해 특정 DNS 레코드 타입을 조회:
dnsmasq
설명 보기 ▼
dnsmasq
경량 DNS, DHCP, TFTP, PXE 서버.
더 많은 정보: <https://manned.org/dnsmasq>.
dnsmasq
기본 설정으로 dnsmasq 시작:
dnsmasq --no-daemon
포그라운드에서 dnsmasq 실행 (디버깅용):
dnsmasq --conf-file={{path/to/config.conf}}
사용자 정의 설정 파일 지정:
docker compose down
설명 보기 ▼
docker compose down
Stop and remove containers, networks, images, and volumes created by `docker compose up`.
docker compose down
Stop and remove all containers and networks:
docker compose down --rmi all
Stop and remove containers, networks, and all images used by services:
docker compose down --rmi local
Stop and remove containers, networks, and only images without a custom tag:
docker compose logs
설명 보기 ▼
docker compose logs
View output from containers in a Docker Compose application.
docker compose logs
View logs for all services:
docker compose logs {{service_name}}
View logs for a specific service:
docker compose logs {{[-f|--follow]}}
View logs and follow new output (like `tail --follow`):
docker compose up
설명 보기 ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
docker compose
설명 보기 ▼
docker compose
Run and manage multi container Docker applications.
docker compose ps
List all running containers:
docker compose up {{[-d|--detach]}}
Create and start all containers in the background using a `docker-compose.yml` file from the current directory:
docker compose up --build
Start all containers, rebuild if necessary:
docker exec
설명 보기 ▼
docker exec
This command is an alias of `docker container exec`.
tldr docker container exec
View documentation for the original command:
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
docker
설명 보기 ▼
docker
Docker 컨테이너 및 이미지를 관리.
`run`과 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://docs.docker.com/reference/cli/docker/>.
docker {{[ps|container ls]}} {{[-a|--all]}}
모든 도커 컨테이너들(실행 및 중지) 목록 보기:
docker {{[run|container run]}} --name {{container_name}} {{image}}
사용자 정의 이름으로 이미지로부터 컨테이너 실행:
docker container {{start|stop}} {{container_name}}
기존 컨테이너 시작 또는 중지:
