diff --git a/common/baserow-oauth-stub/docker-compose.yml b/common/baserow-oauth-stub/docker-compose.yml new file mode 100644 index 0000000..cae37ce --- /dev/null +++ b/common/baserow-oauth-stub/docker-compose.yml @@ -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