Configure docker-compose to build from git repository

Update build contexts to pull from git repository URL instead of
local directory. This allows Portainer to build images directly
from the repository without requiring SSH access to the server.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Keith Smith
2026-01-09 09:19:45 -07:00
co-authored by Claude Sonnet 4.5
parent ff534301f8
commit 842b958b43
+3 -3
View File
@@ -46,7 +46,7 @@ services:
# ================================================================= # =================================================================
web: web:
build: build:
context: . context: https://git.firebugit.com/Firebug_IT/KeepItGoingServer.git#main
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: keepitgoing-web container_name: keepitgoing-web
restart: unless-stopped restart: unless-stopped
@@ -103,7 +103,7 @@ services:
# ================================================================= # =================================================================
celery-worker: celery-worker:
build: build:
context: . context: https://git.firebugit.com/Firebug_IT/KeepItGoingServer.git#main
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: keepitgoing-celery-worker container_name: keepitgoing-celery-worker
restart: unless-stopped restart: unless-stopped
@@ -138,7 +138,7 @@ services:
# ================================================================= # =================================================================
celery-beat: celery-beat:
build: build:
context: . context: https://git.firebugit.com/Firebug_IT/KeepItGoingServer.git#main
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: keepitgoing-celery-beat container_name: keepitgoing-celery-beat
restart: unless-stopped restart: unless-stopped