This commit is contained in:
zino
2023-12-05 13:15:16 +01:00
parent 70793fb997
commit a2c0cb6b9a
3 changed files with 27 additions and 0 deletions

5
.gitignore vendored Normal file
View 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
View 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
View File