First
This commit is contained in:
commit
85e6e693f8
8 changed files with 564 additions and 0 deletions
64
NG-Proxy.yaml
Executable file
64
NG-Proxy.yaml
Executable file
|
|
@ -0,0 +1,64 @@
|
|||
version: "2.2"
|
||||
services:
|
||||
|
||||
|
||||
|
||||
# swag:
|
||||
# image: ghcr.io/linuxserver/swag
|
||||
# container_name: swag
|
||||
|
||||
# cap_add:
|
||||
# - NET_ADMIN
|
||||
# networks:
|
||||
# - netgrimoire
|
||||
# environment:
|
||||
# - TZ=America/Chicago
|
||||
# - PGID=998
|
||||
# - PUID=1001
|
||||
# - URL=wasted-bandwidth.net
|
||||
# - SUBDOMAINS=alternate
|
||||
# - VALIDATION=http
|
||||
# - EMAIL=phil@pncharris.com
|
||||
# # - STAGING=true
|
||||
# - EXTRA_DOMAINS=roundcube.wasted-bandwidth.net,cliff.netgrimoire.com
|
||||
# #,roundcube.pncharris.com,books.pncharris.com,webmail.pncharris.com,comics.netgrimoire.com
|
||||
# volumes:
|
||||
# - /DockerVol/swag/config:/config
|
||||
# ports:
|
||||
# - 443:443
|
||||
# - 80:80
|
||||
# restart: unless-stopped
|
||||
|
||||
|
||||
npm:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
container_name: npm
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
# These ports are in format <host-port>:<container-port>
|
||||
- '80:80' # Public HTTP Port
|
||||
- '443:443' # Public HTTPS Port
|
||||
- '81:81' # Admin Web Port
|
||||
# Add any other Stream port you want to expose
|
||||
# - '21:21' # FTP
|
||||
networks:
|
||||
- netgrimoire
|
||||
# Uncomment the next line if you uncomment anything in the section
|
||||
# environment:
|
||||
# Uncomment this if you want to change the location of
|
||||
# the SQLite DB file within the container
|
||||
# DB_SQLITE_FILE: "/data/database.sqlite"
|
||||
|
||||
# Uncomment this if IPv6 is not enabled on your host
|
||||
# DISABLE_IPV6: 'true'
|
||||
|
||||
volumes:
|
||||
- /DockerVol/npm/data:/data
|
||||
- /DockerVol/npm/letsencrypt:/etc/letsencrypt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue