add common/baserow-oauth-stub/docker-compose.yml (fix connecteur Claude.ai Baserow MCP)

This commit is contained in:
2026-07-28 12:25:53 +00:00
parent 03c5ef7b36
commit e79c44ae90
@@ -0,0 +1,26 @@
services:
oauth-app:
build: .
container_name: baserow-oauth-app
restart: unless-stopped
networks:
- n8n
nginx:
image: nginx:alpine
container_name: baserow-oauth-proxy
restart: unless-stopped
ports:
- "3887:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ./oauth-authorization-server.json:/etc/nginx/well-known/oauth-authorization-server.json:ro
- ./oauth-protected-resource.json:/etc/nginx/well-known/oauth-protected-resource.json:ro
networks:
- n8n
depends_on:
- oauth-app
networks:
n8n:
external: true