3 образа
services:
identydock:
build: . #build ссылается на docker file. Либо build, либо image.
ports:
- "5000:5000"
environment:
ENV: DEV
volumes:
- ./app:/app # старое описание
- type: volume
source: counter-vol
target: /app
links:
- dnmonster
- redis
dnmonster:
image: amouat/dnmonster
redis:
image: redis
volumes:
counter-vol:
No Comments