costco-grocery-list/docker-compose.new.yml
Nico e9b678c7be
All checks were successful
Build & Deploy Costco Grocery List / build (push) Successful in 11s
Build & Deploy Costco Grocery List / verify-images (push) Successful in 2s
Build & Deploy Costco Grocery List / deploy (push) Successful in 5s
Build & Deploy Costco Grocery List / notify (push) Successful in 1s
revert registry
2026-01-28 00:54:08 -08:00

21 lines
479 B
YAML

services:
backend:
image: git.nicosaya.com/nalalangan/costco-grocery-list/backend:main-new
# image: grocery-app/backend:main-new
restart: always
env_file:
- ./backend.env
ports:
- "5001:5000"
frontend:
image: git.nicosaya.com/nalalangan/costco-grocery-list/frontend:main-new
# image: grocery-app/frontend:main-new
restart: always
env_file:
- ./frontend.env
ports:
- "3001:5173"
depends_on:
- backend