Files
strava-mcp/docker-compose.yml
Bastian Wagner c94a02e6d0 Docker
2026-06-17 10:45:09 +02:00

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