도커 구성에서 호스트 디렉토리를 볼륨으로 마운트하려면 어떻게 합니까?
도커화 중인 개발 환경이 있으므로 도커 이미지를 재구축하지 않고도 변경 사항을 실시간으로 다시 로드할 수 있는 기능을 원합니다.redis가 내 앱의 종속성 중 하나이고 redis 컨테이너를 연결할 수 있는 것을 좋아하기 때문에 도커 합성을 사용하고 있습니다.
두 개의 컨테이너가 정의되어 있습니다.docker-compose.yml
:
node:
build: ./node
links:
- redis
ports:
- "8080"
env_file:
- node-app.env
redis:
image: redis
ports:
- "6379"
나는 나의 요점에 도달했습니다.node
볼륨을 추가하는 앱의 도커 파일이지만 코드에 대한 모든 라이브 편집이 컨테이너에 반영되도록 호스트의 디렉토리를 볼륨에 마운트하려면 어떻게 해야 합니까?
현재 Docker 파일은 다음과 같습니다.
# 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
문서를 확인합니다.
겉보기에는 도커-compose.yml에서 다음을 수행할 수 있습니다.
volumes:
- ./:/app
어디에./
호스트 디렉토리입니다./app
컨테이너의 대상 디렉터리입니다.
EDIT:
Previous documentation source now leads to version history, you'll have to select the version of compose you're using and look for the reference.
참고 사항:이 편집 시점의 모든 버전에 대해 구문이 동일하게 유지됩니다.
몇 가지 옵션이 있습니다.
짧은 구문
사용host : guest
format 다음 중 하나를 수행할 수 있습니다.
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
긴 구문
도커 구성 v3.2의 경우 다음과 같은 짧은 형식으로 표현할 수 있는 추가 필드 구성을 허용하는 긴 구문을 사용할 수 있습니다.mount type
(volume, bind 또는 tmpfs) 및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-delays-3을 참조하십시오.
특정 호스트 디렉토리를 마운트하려는 경우/disk1/prometheus-data
다음 예에서는) 볼륨으로서volumes
Docker Compose YAML 파일의 섹션에서 아래와 같이 작업할 수 있습니다. 예:
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의 Docker 파일에서 아래와 같은 지침을 찾을 수 있습니다. 이 지침은 네이티브 호스트 등에서 외부로 마운트된 볼륨을 보관하는 것으로 표시됩니다(단, 이 지침은 볼륨을 컨테이너에 마운트하기 위해 반드시 필요한 것은 아닙니다).
도커 파일
...
VOLUME ["/prometheus"]
...
참조:
- https://docs.docker.com/compose/compose-file/compose-file-v3/ #드라이버
- https://docs.docker.com/compose/compose-file/compose-file-v3/ #driver_opts
그것은 두 가지였습니다.
볼륨을 추가했습니다.docker-compose.yml
:
node:
volumes:
- ./node:/app
이동했습니다.npm install && nodemon app.js
산산조각으로CMD
왜냐면RUN
Union File System에 추가할 내용이 있습니다. 볼륨이 UFS의 일부가 아닙니다.
# 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
외부 도커로 언급하기 전에 호스트 디렉토리와 매핑된 도커 볼륨을 직접 만들어야 합니다.
1.공유라는 이름의 볼륨 만들기
docker volume create --driver local \
--opt type=none \
--opt device=/home/mukundhan/share \
--opt o=bind share
2. 도커 구성에 사용합니다.
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
이렇게 하면 서로 다른 컨테이너에서 실행되는 많은 서비스와 동일한 디렉토리를 공유할 수 있습니다.
도커-콤포지.yml 다음 형식을 사용할 수 있습니다.
volumes:
- host directory:container directory
그들의 문서에 의하면.
다음은 Node.js 응용 프로그램 및 MongoDB 데이터베이스에 대한 작업 예제입니다.
도커-docker.yml
version: '3'
services:
my-app:
container_name: my-app-container
restart: always
build: .
volumes:
- './storage:/usr/src/app/storage'
ports:
- "3000:3000"
links:
- my-app-db
my-app-db:
container_name: my-app-db-container
image: mongo
restart: always
volumes:
- './data:/data/db'
ports:
- "27017:27017"
도커 파일
FROM node:16.13.2
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json ./
RUN npm install
COPY . /usr/src/app/
EXPOSE 3000
CMD [ "npm", "start"]
docker-compose.yaml
바인딩 마운트를 사용하여 달성했습니다.
version: '3.0'
services:
redisdb:
image: redis:6.0
restart: always
ports:
- "6379:6379"
container_name: redisdb-container
command: ["redis-server", "--bind", "redisdb", "--port", "6379"]
urlshortnerservice:
depends_on:
- redisdb
ports:
- "7777:7777"
restart: always
container_name: url-shortner-container
image: url-shortner-service
volumes:
- ../pkg/repository/filestorage:/pkg/repository/filestorage #host directory:container directory
언급URL : https://stackoverflow.com/questions/40905761/how-do-i-mount-a-host-directory-as-a-volume-in-docker-compose
'programing' 카테고리의 다른 글
"스레드 세이프"가 정말 의미하는 것은...실용적인 용어로 (0) | 2023.08.30 |
---|---|
ASP.NET MVC "Ajax.BeginForm"은 모델이 유효하지 않더라도 OnSuccess를 실행합니다. (0) | 2023.08.30 |
JWT: 'module' 개체에 'encode' 특성이 없습니다. (0) | 2023.08.30 |
GitHub이 리포지토리를 잘못된 언어로 변경합니다. (0) | 2023.08.30 |
[Object Object]의 의미는 무엇입니까? (0) | 2023.08.30 |