From b56fb8bc40fcf841f9cb1ebafb5283daec00e47e Mon Sep 17 00:00:00 2001 From: Ernst Widerberg Date: Wed, 10 Nov 2021 16:22:39 +0100 Subject: Add auth-server-poc --- auth-server-poc/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 auth-server-poc/docker-compose.yml (limited to 'auth-server-poc/docker-compose.yml') diff --git a/auth-server-poc/docker-compose.yml b/auth-server-poc/docker-compose.yml new file mode 100644 index 0000000..d62bd77 --- /dev/null +++ b/auth-server-poc/docker-compose.yml @@ -0,0 +1,15 @@ +--- +version: '3.7' +services: + auth-server-poc: + build: . + ports: + - 8000:80 + volumes: + - auth-server-poc_cert:/opt/auth-server-poc/cert/ + - auth-server-poc_userdb:/opt/auth-server-poc/userdb/ + container_name: auth-server-poc + +volumes: + auth-server-poc_cert: + auth-server-poc_userdb: -- cgit v1.1