From 98768bfa3076f4d9b9590974643d41a83aae3339 Mon Sep 17 00:00:00 2001 From: kingbri Date: Wed, 4 Sep 2024 23:39:06 -0400 Subject: [PATCH] Docker: Re-add build block If a user wants to build from source, let them. But the default should fetch from the package registry. Signed-off-by: kingbri --- docker/docker-compose.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 8a46737..d27bf47 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,6 +1,12 @@ version: '3.8' services: tabbyapi: + # Uncomment this to build a docker image from source + #build: + # context: .. + # dockerfile: ./docker/Dockerfile + + # Comment this to build a docker image from source image: ghcr.io/theroyallab/tabbyapi:latest ports: - "5000:5000"