docs(docker): add docker-compose env file configuration example (#6465)

This commit is contained in:
Mahtis Michel
2020-10-08 01:33:55 +02:00
committed by GitHub
parent 58fe1b71c7
commit deeff4b42c

View File

@@ -160,3 +160,11 @@ Example:
```sh ```sh
SPEC="{ \"openapi\": \"3.0.0\" }" SPEC="{ \"openapi\": \"3.0.0\" }"
``` ```
### Docker-Compose
#### .env file example encoding
```sh
SUPPORTED_SUBMIT_METHODS=['get', 'post']
URLS=[ { url: 'http://petstore.swagger.io/v2/swagger.json', name: 'Petstore' } ]
```