22 lines
416 B
YAML
22 lines
416 B
YAML
services:
|
|
api:
|
|
image: strava-mcp-api:latest
|
|
build:
|
|
context: ./api
|
|
target: production
|
|
env_file: .env
|
|
ports:
|
|
- "127.0.0.1:${API_PORT:-3000}:3000"
|
|
restart: unless-stopped
|
|
|
|
client:
|
|
image: strava-mcp-client:latest
|
|
build:
|
|
context: ./client
|
|
target: production
|
|
ports:
|
|
- "${CLIENT_PORT:-8080}:80"
|
|
depends_on:
|
|
- api
|
|
restart: unless-stopped
|