From 439fa8f4b2965454982b1f86eee997f149e616b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fa=CC=81bio=20Batista?= Date: Tue, 6 Jun 2017 00:43:25 -0300 Subject: [PATCH] Changed the docker-compose example to avoid confusion --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59638f2..856dcbb 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ You can use `docker-compose` for that: version: "2" volumes: - s3vol: + s3data: driver: local services: @@ -87,11 +87,11 @@ services: image: elementar/s3-volume command: s3://mybucket/someprefix volumes: - - s3vol:/data + - s3data:/data db: image: postgres volumes: - - s3vol:/var/lib/postgresql/data + - s3data:/var/lib/postgresql/data ``` ## Contributing