From 398575c70c217c2448f2ef46213a8132ba9faf4c Mon Sep 17 00:00:00 2001 From: Guy Date: Tue, 19 Dec 2017 22:34:22 +0200 Subject: [PATCH] changed docker-comppse.yml example to build the docker image instead of pull the previously used debian based image from docker hub --- docker-compose.yml.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml.example b/docker-compose.yml.example index 2b7ee8b36..6920836ba 100644 --- a/docker-compose.yml.example +++ b/docker-compose.yml.example @@ -2,7 +2,7 @@ version: '2' services: webserver: - image: pitkley/paperless + build: ./ ports: # You can adapt the port you want Paperless to listen on by # modifying the part before the `:`. @@ -20,7 +20,7 @@ services: command: ["runserver", "--insecure", "0.0.0.0:8000"] consumer: - image: pitkley/paperless + build: ./ volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media