Öncelikle herkese merhaba.
Host’taki bir klasörü container’daki bir klasöre bind ederken
host’taki klasör: /home/apismellifica/my-test-environment
container’daki klasör: /root/app
docker-compose file’da
…
volumes:
- /home/apismellifica/my-test-environment:/root/app
yukarıdaki şekilde ya da
$HOME/my-test-environment:/root/app
diyerek her iki türde de bind edebiliyoruz. İkinci türde bind etmek bize generic kullanım sağlıyor.
ama aşağıdaki kullanıma izin vermiyor. İlla /home/apismellifica/my-test-environment bu biçimde yazmamı istiyor. Docker’ın bu işlemi yapmasını nasıl sağlayabilirim, şimdiden teşekkürler.
…
volumes:
- environment:/root/app (diye bir volume oluşturdum)
volumes:
my-test-environment:
driver: local
driver_opts:
type: none
device: $HOME/my-test-environment ******(SORUNLU KISIM) ;’)
o: bind