costco-grocery-list/docker-compose.yml
Nico 471ffae088
All checks were successful
Build & Deploy Costco Grocery List / build (push) Successful in 11s
Build & Deploy Costco Grocery List / deploy (push) Successful in 9s
Build & Deploy Costco Grocery List / notify (push) Successful in 1s
potential fix
2026-01-02 17:49:26 -08:00

19 lines
408 B
YAML

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