16 lines
281 B
YAML
16 lines
281 B
YAML
|
# -*- coding: utf-8 mode: yaml -*- vim:sw=2:sts=2:et:ai:si:sta:fenc=utf-8
|
||
|
|
||
|
services:
|
||
|
main:
|
||
|
image: nginxproxy/nginx-proxy
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
network:
|
||
|
- proxy
|
||
|
ports:
|
||
|
- 80:80
|
||
|
|
||
|
networks:
|
||
|
proxy:
|
||
|
external: true
|