27 lines
504 B
YAML
27 lines
504 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
nginx:
|
||
|
image: jc21/nginx-proxy-manager:latest
|
||
|
container_name: nginx
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 80:80 # HTTP Redirect Port
|
||
|
- 443:443 # HTTPS Redirect Port
|
||
|
- 81:81 # Management Port
|
||
|
volumes:
|
||
|
- nginx_data:/data
|
||
|
- nginx_letsencrypt:/etc/letsencrypt
|
||
|
environment:
|
||
|
- TZ=Europe/Zurich
|
||
|
- DISABLE_IPV6=true
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
external: true
|
||
|
name: proxynet
|
||
|
|
||
|
volumes:
|
||
|
nginx_data:
|
||
|
nginx_letsencrypt:
|