Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

541
Views
Docker-compose - volumes driver local meaning

I'm making some docker-compose yml file with this link. In this config, What does meaning of driver: local in top-level volumes?

volumes:
  esdata1:
    driver: local
  esdata2:
    driver: local
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

It's volume driver, equivalent to

docker volume create --driver local --name esdata1
docker volume create --driver local --name esdata2

local means the volumes esdata1 and esdata2 are created on the same Docker host where you run your container. By using other Volume plugins, e.g.,

--driver=flocker

you are able to create a volume on a external host and mount it to the local host, say, /data-path. So, when your container writes to /data-path, it actually writes to a external disk via network.

Refer here for some sort of Volume plugins available

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!