-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (25 loc) · 997 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (25 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Ushaddow Docker Compose - Application Services
# This file contains only the application layer
#
# ⚠️ Prerequisites: Infrastructure must be running first!
#
# Recommended workflow:
# ./go.sh # First time (handles everything)
#. ./quick-start.sh # Setup infra + app and options
# make up # Daily use (auto-starts infra if needed)
#
# Direct docker compose (manual):
# docker compose -f docker-compose.infra.yml up -d # Start infra first
# docker compose up -d # Then start app
# docker compose down # Stop app only
#
# Environment:
# Uses .env.default (auto-generated by ./quick-start.sh)
name: ushadow
include:
# Application services (backend API + web UI only)
- compose/backend.yml
- compose/frontend.yml
# Note: Memory services run in separate projects:
# docker compose -f compose/memory.yml -p memory up -d
# This allows switching between different memory providers