Update docker-compose to use GitHub Container Registry images

Images:
- ghcr.io/clucraft/priceghost-backend:latest
- ghcr.io/clucraft/priceghost-frontend:latest

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
clucraft 2026-01-20 14:03:54 -05:00
parent 8992087220
commit 324d47d8b1

View file

@ -22,9 +22,7 @@ services:
# Backend API
backend:
build:
context: ./backend
dockerfile: Dockerfile
image: ghcr.io/clucraft/priceghost-backend:latest
container_name: priceghost-backend
environment:
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/priceghost
@ -40,9 +38,7 @@ services:
# Frontend
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
image: ghcr.io/clucraft/priceghost-frontend:latest
container_name: priceghost-frontend
ports:
- "80:80"