Jotzy/compose.yaml

17 lines
339 B
YAML
Raw Normal View History

2026-01-06 12:51:40 +00:00
services:
api:
build:
context: ./backend
2026-01-06 13:13:59 +00:00
container_name: fastnotes-api
2026-01-06 15:04:02 +00:00
# NO ports section at all - Coolify handles this
2026-01-06 12:51:40 +00:00
ui:
build:
2026-01-06 13:28:32 +00:00
context: ./frontend
args:
2026-01-06 15:04:02 +00:00
VITE_API_URL: https://notesapi.fitzythe.dev
2026-01-06 13:13:59 +00:00
container_name: fastnotes-ui
2026-01-06 15:04:02 +00:00
# NO ports section at all
2026-01-06 12:51:40 +00:00
depends_on:
- api