我試圖從版本1升級泊塢窗,compose.yml到版本3安裝在撰寫文件版本的Windows主機目錄3
主要問題有關
volumes_from: To share a volume between services,
define it using the top-level volumes option and
reference it from each service that shares it using the
service-level volumes option.
最簡單的例子:
版本「1」
data:
image: postgres:latest
volumes:
- ./pg_hba.conf/:/var/lib/postgresql/data/pg_hba.conf
postgres:
restart: always
image: postgres:latest
volumes_from:
- data
ports:
- "5432:5432"
如果我理解正確,應該轉換爲
version: "3"
services:
db:
image: postgres:latest
restart: always
volumes:
- db-data:/var/lib/postgresql/data
ports:
- "5432:5432"
networks:
- appn
networks:
appn:
volumes:
db-data:?
問題:如何現在頂層卷選項我可以設置相對路徑到文件夾 「example_folder」 從Windows主機到「DB-數據」?
許多有用的鏈接尼斯的答案。 thaJeztah的帖子更有意義,然後整個(撰寫文件參考)頁面。另外「綁定掛載不是卷(但是使用相同的標誌,從命名角度來看可能會造成混淆)」。對我來說很清楚。 – galakt