modified
This commit is contained in:
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
vouch-proxy:
|
||||
image: quay.io/vouch/vouch-proxy:latest
|
||||
container_name: vouch-proxy
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
VOUCH_DOMAINS: "yourdomain.com"
|
||||
OAUTH_PROVIDER: "google"
|
||||
OAUTH_CLIENT_ID: "1234"
|
||||
OAUTH_CLIENT_SECRET: "secretsecret"
|
||||
OAUTH_CALLBACK_URL: "https://vouch.yourdomain.com/auth"
|
||||
volumes:
|
||||
- ./volumes/config:/config
|
||||
networks:
|
||||
- web
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
name: web
|
||||
Reference in New Issue
Block a user