27 lines
618 B
YAML
27 lines
618 B
YAML
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
|