26 lines
603 B
YAML
26 lines
603 B
YAML
version: '3'
|
|
services:
|
|
nginx:
|
|
container_name: "{{nginx.host}}"
|
|
image: 'jc21/nginx-proxy-manager:latest'
|
|
restart: unless-stopped
|
|
networks:
|
|
net: {}
|
|
ports:
|
|
- '{{nginx.endpoints.http}}:80'
|
|
- '{{nginx.endpoints.https}}:443'
|
|
- '{{nginx.endpoints.admin}}:81'
|
|
volumes:
|
|
- "{{nginx.paths.data}}:/data"
|
|
- "{{nginx.paths.letsencrypt}}:/etc/letsencrypt"
|
|
- '/var/run/docker.sock:/var/run/docker.sock'
|
|
|
|
networks:
|
|
net:
|
|
driver: bridge
|
|
ipam:
|
|
# driver: default
|
|
config:
|
|
- subnet: 172.16.69.0/24
|
|
gateway: 172.16.69.1
|