costco-grocery-list/docker-compose.yml
Nico f23e7db2c9
All checks were successful
Build & Deploy Costco Grocery List / build (push) Successful in 19s
Build & Deploy Costco Grocery List / deploy (push) Successful in 13s
Fix frontend docker compose port serve
2025-11-26 20:30:07 -08:00

21 lines
426 B
YAML

version: "3.9"
services:
backend:
image: git.nicosaya.com/nalalangan/costco-grocery-list/backend:latest
restart: always
env_file:
- ./backend.env
ports:
- "5000:5000"
frontend:
image: git.nicosaya.com/nalalangan/costco-grocery-list/frontend:latest
restart: always
env_file:
- ./frontend.env
ports:
- "3000:5173"
depends_on:
- backend