Add HA watchdog
This commit is contained in:
39
Docker/Nginx/compose.yml
Normal file
39
Docker/Nginx/compose.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80' # Public HTTP Port
|
||||
- '443:443' # Public HTTPS Port
|
||||
- '81:81' # Admin Web Port
|
||||
environment:
|
||||
TZ: "America/Santiago"
|
||||
DB_POSTGRES_HOST: 'db'
|
||||
DB_POSTGRES_PORT: '5432'
|
||||
DB_POSTGRES_USER: 'npm'
|
||||
DB_POSTGRES_PASSWORD: '4d621b77253c5e32beba2ea33a57dc3f'
|
||||
DB_POSTGRES_NAME: 'npm'
|
||||
DISABLE_IPV6: 'true'
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./letsencrypt:/etc/letsencrypt
|
||||
networks:
|
||||
- homelogic
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:17
|
||||
environment:
|
||||
POSTGRES_USER: 'npm'
|
||||
POSTGRES_PASSWORD: '4d621b77253c5e32beba2ea33a57dc3f'
|
||||
POSTGRES_DB: 'npm'
|
||||
volumes:
|
||||
- ./postgresql:/var/lib/postgresql
|
||||
networks:
|
||||
- homelogic
|
||||
|
||||
networks:
|
||||
homelogic:
|
||||
name: homelogic
|
||||
external: true
|
||||
Reference in New Issue
Block a user