Moved to _dev
This commit is contained in:
40
nginx_proxy_manager/compose.yaml
Normal file
40
nginx_proxy_manager/compose.yaml
Normal file
@@ -0,0 +1,40 @@
|
||||
volumes:
|
||||
mysql:
|
||||
data:
|
||||
letsencrypt:
|
||||
|
||||
services:
|
||||
app:
|
||||
container_name: npm-app
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: always
|
||||
ports:
|
||||
- '80:80' # Public HTTP Port
|
||||
- '81:81' # Admin Web Port
|
||||
- '443:443' # Public HTTPS Port
|
||||
- '21:21' # FTP
|
||||
environment:
|
||||
# Mysql/Maria connection parameters:
|
||||
DB_MYSQL_HOST: "db"
|
||||
DB_MYSQL_PORT: 3306
|
||||
DB_MYSQL_USER: "npm"
|
||||
DB_MYSQL_PASSWORD: "npm"
|
||||
DB_MYSQL_NAME: "npm"
|
||||
# DISABLE_IPV6: 'true'
|
||||
volumes:
|
||||
- data:/data
|
||||
- letsencrypt:/etc/letsencrypt
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
container_name: npm-db
|
||||
image: 'jc21/mariadb-aria:latest'
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: 'npm'
|
||||
MYSQL_DATABASE: 'npm'
|
||||
MYSQL_USER: 'npm'
|
||||
MYSQL_PASSWORD: 'npm'
|
||||
volumes:
|
||||
- mysql:/var/lib/mysql
|
||||
Reference in New Issue
Block a user