adds new gitgnore to repo
This commit is contained in:
13
old/npm/.gitignore
vendored
Normal file
13
old/npm/.gitignore
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# NPM data directories
|
||||
data/
|
||||
letsencrypt/
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
26
old/npm/docker-compose.yml
Normal file
26
old/npm/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
version: "3"
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
||||
- '443:443'
|
||||
- '81:81'
|
||||
# Add any other Stream poOrt you want to expose
|
||||
- '2222:2222' # gitea SSH
|
||||
environment:
|
||||
X_FRAME_OPTIONS: "sameorigin"
|
||||
DB_SQLITE_FILE: "/data/database.sqlite"
|
||||
DISABLE_IPV6: 'true'
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./letsencrypt:/etc/letsencrypt
|
||||
healthcheck:
|
||||
test: ["CMD", "/bin/check-health"]
|
||||
interval: 10s
|
||||
timeout: 3s
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: npm
|
||||
Reference in New Issue
Block a user