18 lines
293 B
YAML
18 lines
293 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
image: nginx
|
||
|
container_name: passepartoutvpn-web
|
||
|
volumes:
|
||
|
- ./build:/usr/share/nginx/html
|
||
|
environment:
|
||
|
VIRTUAL_HOST: passepartoutvpn.wtf
|
||
|
expose:
|
||
|
- 80
|
||
|
restart: always
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
name: nginx-proxy
|