modified
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Ignore everything in the volumes directory
|
||||
volumes/*
|
||||
|
||||
# Do not ignore a special file name
|
||||
!.gitkeep
|
||||
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
|
||||
0
volumes/.gitkeep
Normal file
0
volumes/.gitkeep
Normal file
Reference in New Issue
Block a user