From a2c0cb6b9a268eebff3c3300a97e4a0f2801fa2f Mon Sep 17 00:00:00 2001 From: zino Date: Tue, 5 Dec 2023 13:15:16 +0100 Subject: [PATCH] modified --- .gitignore | 5 +++++ docker-compose.yml | 22 ++++++++++++++++++++++ volumes/.gitkeep | 0 3 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 docker-compose.yml create mode 100644 volumes/.gitkeep diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3682984 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Ignore everything in the volumes directory +volumes/* + +# Do not ignore a special file name +!.gitkeep \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..32a9b37 --- /dev/null +++ b/docker-compose.yml @@ -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 diff --git a/volumes/.gitkeep b/volumes/.gitkeep new file mode 100644 index 0000000..e69de29