add common/baserow-oauth-stub/docker-compose.yml (fix connecteur Claude.ai Baserow MCP)
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user