Jotzy/compose.yaml
2026-01-06 15:04:02 +00:00

16 lines
339 B
YAML

services:
api:
build:
context: ./backend
container_name: fastnotes-api
# NO ports section at all - Coolify handles this
ui:
build:
context: ./frontend
args:
VITE_API_URL: https://notesapi.fitzythe.dev
container_name: fastnotes-ui
# NO ports section at all
depends_on:
- api