Size: 1433
Comment:
|
Size: 1622
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 12: | Line 12: |
Most [[Linux]] distributions offer a `docker-compose` package. |
|
Line 91: | Line 93: |
---- == See also == [[https://docs.docker.com/compose/compose-file/|Docker com,pose reference documentation]] |
Docker Compose
Docker Compose is a method for creating containers through configuration files.
Contents
Installation
Most Linux distributions offer a docker-compose package.
Configuration
Compose Files
Volumes
Docker supports two methods for binding volumes, hereafter referred to as the 'long syntax' and the 'short syntax'. Docker Compose supports two parallel methods. Upstream recommendation is to use the long syntax.
The long syntax is as follows:
container_name: CONTAINER version: 0.1 services: web: image: IMAGE volumes: - type: bind source: relative/source/path target: /absolute/target/path read only: true
The short syntax is as follows:
container_name: CONTAINER version: 0.1 services: web: image: IMAGE volumes: - relative/source/path:/absolute/target/path:ro
Port Management
To give a container access to ports, use:
container_name: CONTAINER version: 0.1 services: web: image: IMAGE ports: - 8888:8888
Environment Variables
To pass in an environment variable from the local environment to a Docker container, use:
container_name: CONTAINER version: 0.1 services: web: image: IMAGE environment: - VARIABLE1 - VARIABLE2
See also
Docker com,pose reference documentation