This repository was archived by the owner on Nov 27, 2023. It is now read-only.
This repository was archived by the owner on Nov 27, 2023. It is now read-only.
mounting EFS volume in multiple services fails #1054
Closed
Description
Currently when you author a compose file with a volume mount going to two different services you get the below error on running docker compose up due to duplicate mounting in subnets.
This ticket is a feature request to support mounting between services using volume EFS.
fsmt-1d7dc3ec already exists in stack arn:aws:cloudformation:eu-west-2:xxxx:stack/play/sdfgfd-3cc8-11eb-af6f-dsfgfd
Example compose file
version: "3.8"
services:
nginx:
image: nginx:latest
ports:
- 80:80
networks:
- ngnetwork
volumes:
- ngdata:/var/www/html
nginx2:
image: nginx:latest
networks:
- ngnetwork
volumes:
- ngdata:/var/www/html
volumes:
ngdata:
networks:
ngnetwork: