mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-29 10:08:51 +00:00
6b208ec2ab
Change-type: patch
17 lines
332 B
YAML
17 lines
332 B
YAML
version: '2'
|
|
volumes:
|
|
resin-data:
|
|
services:
|
|
service1:
|
|
volumes:
|
|
- 'resin-data:/data'
|
|
build: ./service1
|
|
service2:
|
|
volumes:
|
|
- 'resin-data:/data'
|
|
build:
|
|
context: ./service2
|
|
dockerfile: Dockerfile-alt
|
|
args:
|
|
- 'COMPOSE_ARG=an argument defined in the docker-compose.yml file'
|