costco-grocery-list/docker-compose.new.yml
Nico 67d681114f
All checks were successful
Build & Deploy Costco Grocery List / build (push) Successful in 27s
Build & Deploy Costco Grocery List / deploy (push) Successful in 4s
Build & Deploy Costco Grocery List / notify (push) Successful in 1s
update gitea workflow to allow for 2 different actions
2026-01-27 23:48:02 -08:00

19 lines
394 B
YAML

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