added role to repo
This commit is contained in:
22
files/docker-compose.yaml.j2
Normal file
22
files/docker-compose.yaml.j2
Normal file
@@ -0,0 +1,22 @@
|
||||
version: "3"
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
||||
- '443:443'
|
||||
- '8181: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:
|
||||
- {{ npm_app_dir }}:/data
|
||||
- {{ letsencrypt_dir }}:/etc/letsencrypt
|
||||
healthcheck:
|
||||
test: ["CMD", "/bin/check-health"]
|
||||
interval: 10s
|
||||
timeout: 3s
|
||||
Reference in New Issue
Block a user