diff options
Diffstat (limited to 'auth-server-poc/docker-compose.yml')
-rw-r--r-- | auth-server-poc/docker-compose.yml | 15 |
1 files changed, 15 insertions, 0 deletions
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: |