[docker] Docker compose의 볼륨으로 호스트 디렉토리를 마운트하는 방법
Dockerizing중인 개발 환경이 있고 Docker 이미지를 다시 빌드하지 않고도 변경 사항을 실시간으로 다시로드 할 수있는 기능을 원합니다. redis가 내 앱의 종속성 중 하나이기 때문에 docker compose를 사용하고 있으며 redis 컨테이너를 연결할 수있는 것을 좋아합니다.
내에 정의 된 두 개의 컨테이너가 있습니다 docker-compose.yml
.
node:
build: ./node
links:
- redis
ports:
- "8080"
env_file:
- node-app.env
redis:
image: redis
ports:
- "6379"
내 node
앱의 dockerfile에서 볼륨을 추가하는 지점에 도달했지만 코드에 대한 모든 라이브 편집 내용이 컨테이너에 반영되도록 볼륨에 호스트 디렉터리를 마운트하려면 어떻게해야합니까?
내 현재 Dockerfile은 다음과 같습니다.
# Set the base image to Ubuntu
FROM node:boron
# File Author / Maintainer
MAINTAINER Amin Shah Gilani <amin@gilani.me>
# Install nodemon
RUN npm install -g nodemon
# Add a /app volume
VOLUME ["/app"]
# TODO: link the current . to /app
# Define working directory
WORKDIR /app
# Run npm install
RUN npm install
# Expose port
EXPOSE 8080
# Run app using nodemon
CMD ["nodemon", "/app/app.js"]
내 프로젝트는 다음과 같습니다.
/
- docker-compose.yml
- node-app.env
- node/
- app.js
- Dockerfile.js
답변
답변
몇 가지 옵션이 있습니다
짧은 구문
host : guest
형식을 사용하여 다음 중 하나를 수행 할 수 있습니다.
volumes:
# Just specify a path and let the Engine create a volume
- /var/lib/mysql
# Specify an absolute path mapping
- /opt/data:/var/lib/mysql
# Path on the host, relative to the Compose file
- ./cache:/tmp/cache
# User-relative path
- ~/configs:/etc/configs/:ro
# Named volume
- datavolume:/var/lib/mysql
긴 구문
docker-compose v3.2부터는 mount type
(volume, bind 또는 tmpfs) 및 .NET 과 같은 짧은 형식으로 표현할 수있는 추가 필드를 구성 할 수있는 긴 구문을 사용할 수 있습니다 read_only
.
version: "3.2"
services:
web:
image: nginx:alpine
ports:
- "80:80"
volumes:
- type: volume
source: mydata
target: /data
volume:
nocopy: true
- type: bind
source: ./static
target: /opt/app/static
networks:
webnet:
volumes:
mydata:
자세한 내용은 https://docs.docker.com/compose/compose-file/#long-syntax-3 을 확인하십시오 .
답변
Docker Compose YAML 파일 섹션의 /disk1/prometheus-data
볼륨으로 특정 호스트 디렉토리 ( 다음 예에서) 를 마운트 하려면 다음과 같이 volumes
수행 할 수 있습니다. 예 :
version: '3'
services:
prometheus:
image: prom/prometheus
volumes:
- prometheus-data:/prometheus
volumes:
prometheus-data:
driver: local
driver_opts:
o: bind
type: none
device: /disk1/prometheus-data
그건 그렇고, prometheus의 Dockerfile에서 VOLUME
아래와 같은 명령어를 찾을 수 있는데, 이는 네이티브 호스트 등에서 외부 마운트 된 볼륨을 보유하고 있음을 표시합니다. (참고 :이 명령어는 볼륨을 컨테이너에 마운트하는 데 반드시 필요한 것은 아닙니다.) :
Dockerfile
...
VOLUME ["/prometheus"]
...
참조 :
답변
두 가지였습니다.
볼륨을 추가했습니다 docker-compose.yml
.
node:
volumes:
- ./node:/app
Union File System에 항목을 추가하고 내 볼륨이 UFS의 일부가 아니기 때문에 npm install && nodemon app.js
조각을 a 로 옮겼습니다 .CMD
RUN
# Set the base image to Ubuntu
FROM node:boron
# File Author / Maintainer
MAINTAINER Amin Shah Gilani <amin@gilani.me>
# Install nodemon
RUN npm install -g nodemon
# Add a /app volume
VOLUME ["/app"]
# Define working directory
WORKDIR /app
# Expose port
EXPOSE 8080
# Run npm install
CMD npm install && nodemon app.js
답변
우리가해야 만들 자신의 고정 표시기 볼륨 매핑 호스트 디렉토리를 우리가 전에 언급 에 고정 표시기 – compose.yml 같은 외부
1. share 라는 볼륨 생성
docker volume create --driver local \
--opt type=none \
--opt device=/home/mukundhan/share \
--opt o=bind share
2. docker-compose에서 사용하십시오.
version: "3"
volumes:
share:
external: true
services:
workstation:
container_name: "workstation"
image: "ubuntu"
stdin_open: true
tty: true
volumes:
- share:/share:consistent
- ./source:/source:consistent
working_dir: /source
ipc: host
privileged: true
shm_size: '2gb'
db:
container_name: "db"
image: "ubuntu"
stdin_open: true
tty: true
volumes:
- share:/share:consistent
working_dir: /source
ipc: host
이렇게하면 서로 다른 컨테이너에서 실행되는 많은 서비스와 동일한 디렉토리를 공유 할 수 있습니다.