18 lines
445 B
YAML
18 lines
445 B
YAML
version: '2'
|
|
services:
|
|
nginx-proxy:
|
|
#image: jwilder/nginx-proxy
|
|
build: .
|
|
container_name: 0-nginx-proxy
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- /var/run/docker.sock:/tmp/docker.sock:ro
|
|
- "./nginx/vhost:/etc/nginx/vhost.d"
|
|
- "./nginx/lua:/usr/local/openresty/nginx/lua"
|
|
|
|
swagger-ui:
|
|
container_name: 0-swagger-ui
|
|
image: schickling/swagger-ui
|
|
environment:
|
|
VIRTUAL_HOST: swagger-ui.presspage.dev
|