mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 15:18:32 -06:00
basic mcp working
This commit is contained in:
@@ -11,6 +11,7 @@ services:
|
||||
- storageDirectory=/app/storage
|
||||
- TZ=America/Denver
|
||||
- NEXT_PUBLIC_ENABLE_FILE_SYNC=true
|
||||
- REDIS_URL=redis://redis:6379
|
||||
# - FILE_POLLING=true
|
||||
volumes:
|
||||
# - ~/projects/faculty/3840_Telemetry/2024Spring_alex/modules:/app/storage/spring_2024_telemetry
|
||||
@@ -38,24 +39,35 @@ services:
|
||||
- ~/projects/faculty/1425/2025-fall-alex/modules:/app/storage/1425
|
||||
|
||||
- ~/projects/facultyFiles:/app/public/images/facultyFiles
|
||||
|
||||
|
||||
redis:
|
||||
image: redis
|
||||
container_name: redis
|
||||
volumes:
|
||||
- redis-data:/data
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
redis-data:
|
||||
|
||||
# https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/
|
||||
# https://github.com/jonas-merkle/container-cloudflare-tunnel
|
||||
cloudflare-tunnel:
|
||||
image: cloudflare/cloudflared
|
||||
container_name: cloudflare-tunnel
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
command: tunnel run
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
environment:
|
||||
- TUNNEL_TOKEN=${CLOUDFLARE_TUNNEL_TOKEN}
|
||||
healthcheck:
|
||||
test: [ "CMD", "cloudflared", "--version" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
# cloudflare-tunnel:
|
||||
# image: cloudflare/cloudflared
|
||||
# container_name: cloudflare-tunnel
|
||||
# restart: unless-stopped
|
||||
# env_file:
|
||||
# - .env
|
||||
# command: tunnel run
|
||||
# volumes:
|
||||
# - /etc/localtime:/etc/localtime:ro
|
||||
# environment:
|
||||
# - TUNNEL_TOKEN=${CLOUDFLARE_TUNNEL_TOKEN}
|
||||
# healthcheck:
|
||||
# test: [ "CMD", "cloudflared", "--version" ]
|
||||
# interval: 30s
|
||||
# timeout: 10s
|
||||
# retries: 3
|
||||
# start_period: 10s
|
||||
# https://ngrok.com/docs/using-ngrok-with/docker/
|
||||
|
||||
Reference in New Issue
Block a user