25 lines
421 B
YAML
25 lines
421 B
YAML
version: '2'
|
|
|
|
services:
|
|
static:
|
|
image: nginx
|
|
container_name: nginx-static
|
|
restart: always
|
|
environment:
|
|
- VIRTUAL_HOST=nuk-svk.ru
|
|
- LETSENCRYPT_HOST=nuk-svk.ru
|
|
#- VIRTUAL_PORT=443
|
|
#- VIRTUAL_PROTO=https
|
|
volumes:
|
|
- vhost.d:/etc/nginx/vhost.d
|
|
- html:/usr/share/nginx/html
|
|
|
|
volumes:
|
|
vhost.d:
|
|
html:
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: proxy_proxy-tier
|