Files
strava-mcp/docker-compose.yml
Bastian Wagner 38141c0358 git init
2026-06-16 12:15:29 +02:00

19 lines
275 B
YAML

services:
api:
build:
context: ./api
env_file:
- .env
ports:
- "${PORT:-3000}:3000"
restart: unless-stopped
client:
build:
context: ./client
ports:
- "8080:80"
depends_on:
- api
restart: unless-stopped