LoginSignup
17
4

More than 5 years have passed since last update.

docker-composeのvolumesに書いてある":(コロン)"の意味について

Posted at

結論

  • コロンの左側に記述されているホストOSのファイル群を、
  • コロンの右側に記述されているコンテナのパスに設置する
docker-compose
version: '2'
services:
  app:
    image: openjdk:8-jdk-alpine
    ports:
      - "8080:8080"
    volumes:
      - .:/app
      # ホストのカレントディレクトリをコンテナの/appに反映する
    working_dir: /app
    command: ./mvnw spring-boot:run
17
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
4