costco-grocery-list/docker-compose.new.yml
Nico 872945c747
Some checks failed
Build & Deploy Costco Grocery List / build (push) Failing after 8s
Build & Deploy Costco Grocery List / verify-images (push) Has been skipped
Build & Deploy Costco Grocery List / deploy (push) Has been skipped
Build & Deploy Costco Grocery List / notify (push) Successful in 1s
test new registry
2026-01-28 00:37:52 -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