Jotzy/compose.yaml

19 lines
334 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 12:51:40 +00:00
ports:
- "8000:8000"
ui:
build:
2026-01-06 13:28:32 +00:00
context: ./frontend
args:
VITE_API_URL: https://notesapi.fitzythe.dev # Pass as build arg
2026-01-06 13:13:59 +00:00
container_name: fastnotes-ui
ports:
2026-01-06 13:28:32 +00:00
- "80:80"
2026-01-06 12:51:40 +00:00
depends_on:
- api