From 01dbd34d6878c0b4999ea82de639d6540a5b2ce5 Mon Sep 17 00:00:00 2001 From: evazion Date: Fri, 21 May 2021 06:46:06 -0500 Subject: [PATCH] docker: use prebuilt docker images for quickstart script. Use the prebuilt Docker images instead of building them locally in the Docker Compose script. This is faster, but it means that local changes to the code will be ignored. --- config/docker/docker-compose.simple.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config/docker/docker-compose.simple.yaml b/config/docker/docker-compose.simple.yaml index 464ee9445..5bc6386f7 100644 --- a/config/docker/docker-compose.simple.yaml +++ b/config/docker/docker-compose.simple.yaml @@ -19,10 +19,10 @@ version: "3.4" services: danbooru: - # image: evazion/danbooru - build: - context: ../.. - dockerfile: config/docker/Dockerfile.danbooru + image: evazion/danbooru + # build: + # context: ../.. + # dockerfile: config/docker/Dockerfile.danbooru ports: - "80:3000" environment: @@ -38,10 +38,10 @@ services: user: root postgres: - # image: evazion/postgres - build: - context: . - dockerfile: Dockerfile.postgres + image: evazion/postgres + # build: + # context: . + # dockerfile: Dockerfile.postgres environment: POSTGRES_USER: danbooru POSTGRES_HOST_AUTH_METHOD: trust