From 9c205b4fc8060951bebeb934c3325f1afb220297 Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Thu, 16 Jan 2020 10:46:52 -0500 Subject: [PATCH] Fix yamllint complaints for docker-compose.yml While it work it was not technically valid YAML. Make the YAML valid. Signed-off-by: Daniel F. Dickinson --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index f733860..071a785 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,3 +1,4 @@ +--- version: '2' services: @@ -5,6 +6,6 @@ services: restart: unless-stopped image: sameersbn/apt-cacher-ng:latest ports: - - "3142:3142" + - "3142:3142" volumes: - - ./apt-cacher-ng:/var/cache/apt-cacher-ng + - ./apt-cacher-ng:/var/cache/apt-cacher-ng