我有一个开发环境,我有一个dockerizing,我希望能够在不重建docker镜像的情况下实时更新我的更改。我正在使用docker compose,因为redis是我应用程序的依赖项之一,我喜欢能够链接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
答案 0 :(得分:75)
答案 1 :(得分:37)
有几个选项
使用nbrDonation+1
格式,您可以执行以下任何操作:
host : guest
从docker-compose v3.2开始,您可以使用长语法,该语法允许配置可以用简短形式表示的其他字段,例如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
(volume,bind或tmpfs)和{{1} }。
mount type
查看https://docs.docker.com/compose/compose-file/#long-syntax-3了解详情。
答案 2 :(得分:7)
这是两件事:
我在docker-compose.yml
中添加了音量:
node:
volumes:
- ./node:/app
我将npm install && nodemon app.js
部分移动到了CMD
,因为RUN
向联盟文件系统添加了内容,而我的卷不是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
答案 3 :(得分:5)
我们必须创建与主机目录映射的自己的 Docker卷,然后在<< strong> docker-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
这样,我们可以与在不同容器中运行的许多服务共享同一目录
答案 4 :(得分:0)
如果要在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
参考:
答案 5 :(得分:0)