Add OpenAPI route and server

This commit is contained in:
2020-02-04 16:45:54 +01:00
parent 77658c5f6b
commit 42a41da066
6 changed files with 51 additions and 0 deletions

View File

@@ -2,6 +2,14 @@
# Add the "-d" flag at the end for detached execution
version: '3.7'
services:
openapi:
container_name: openapi_${NAME}
image: swaggerapi/swagger-ui
restart: always
ports:
- ${OPENAPI_PORT}:8080
environment:
URL: "http://localhost:8080"
app:
container_name: app_${NAME}