blob: d62bd770787885696cf706d1baa0242ef08affae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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:
|