Raspydock/Server/docker/nginx/docker-compose.yml

27 lines
504 B
YAML
Raw Permalink Normal View History

2024-06-24 18:48:13 +00:00
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: