costco-grocery-list/docker-compose.yml
Nico 34883486cf
Some checks failed
Build & Deploy Costco Grocery List / build (push) Successful in 17s
Build & Deploy Costco Grocery List / deploy (push) Failing after 5s
Build & Deploy Costco Grocery List / notify (push) Failing after 2s
test ntfy
2025-11-26 21:55:25 -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