-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update N8n, Actual and update tag Drupal (#95)
* Supports a variety of software * Update tag * Support jenkins and Tautulli * Update N8n, actual and edit tag Drupal
- Loading branch information
1 parent
dc3708c
commit c1389e4
Showing
12 changed files
with
143 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"cosmos-installer": {}, | ||
"minVersion": "0.9.0", | ||
"services": { | ||
"{ServiceName}": { | ||
"image": "actualbudget/actual-server:latest", | ||
"container_name": "{ServiceName}", | ||
"restart": "unless-stopped", | ||
"environment": [ | ||
"ACTUAL_PORT=8080", | ||
"ACTUAL_UPLOAD_FILE_SIZE_LIMIT_MB=20", | ||
"ACTUAL_UPLOAD_SYNC_ENCRYPTED_FILE_SYNC_SIZE_LIMIT_MB=50" | ||
], | ||
"labels": { | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://comos.manhtuong.net/servapps/Actual-server/icon.png" | ||
}, | ||
"volumes": [{ | ||
"source": "{ServiceName}-actual-data", | ||
"target": "/data", | ||
"type": "volume" | ||
}], | ||
"routes": [{ | ||
"name": "{ServiceName}", | ||
"description": "Expose {ServiceName} to the web", | ||
"useHost": true, | ||
"target": "http://{ServiceName}:8080", | ||
"mode": "SERVAPP", | ||
"Timeout": 14400000, | ||
"ThrottlePerMinute": 12000, | ||
"BlockCommonBots": true, | ||
"SmartShield": { | ||
"Enabled": true | ||
} | ||
}] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Actual", | ||
"longDescription": "<p>Actual Budget is a super fast and privacy-focused app for managing your finances. At its heart is the well proven and much loved Envelope Budgeting methodology. You own your data and can do whatever you want with it.Featuring multi - device sync,optional end - to - end encryption and so much more. < /p>", | ||
"description": "Automated finance tools are great, except when they aren’t. We provide you with tools that are quick to use, but ultimately you are in control. We help you learn, instead of dictating.", | ||
"tags": ["Automated", "finance", "self-hosted"], | ||
"repository": "https://github.com/actualbudget/actual-server/", | ||
"image": "https://hub.docker.com/r/actualbudget/actual-server", | ||
"supported_architectures": ["amd64", "arm64"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"cosmos-installer": {}, | ||
"minVersion": "0.9.0", | ||
"services": { | ||
"{ServiceName}": { | ||
"image": "docker.n8n.io/n8nio/n8n", | ||
"container_name": "{ServiceName}", | ||
"restart": "unless-stopped", | ||
"environment": [ | ||
"DB_TYPE=postgresdb", | ||
"DB_POSTGRESDB_HOST={ServiceName}-postgres", | ||
"DB_POSTGRESDB_PORT=5432", | ||
"DB_POSTGRESDB_DATABASE=n8n", | ||
"DB_POSTGRESDB_USER=n8n", | ||
"DB_POSTGRESDB_PASSWORD={Passwords.0}" | ||
], | ||
"labels": { | ||
"cosmos-persistent-env": "DB_POSTGRESDB_PORT, DB_POSTGRESDB_PORT, DB_POSTGRESDB_DATABASE, DB_POSTGRESDB_USER, DB_POSTGRESDB_PASSWORD", | ||
"cosmos-force-network-secured": "true", | ||
"cosmos-auto-update": "true", | ||
"cosmos-icon": "https://comos.manhtuong.net/servapps/N8n/icon.png" | ||
}, | ||
"networks": { | ||
"{ServiceName}-postgres": {} | ||
}, | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-n8n_storage", | ||
"target": "/home/node/.n8n", | ||
"type": "volume" | ||
} | ||
], | ||
"routes": [ | ||
{ | ||
"name": "{ServiceName}", | ||
"description": "Expose {ServiceName} to the web", | ||
"useHost": true, | ||
"target": "http://{ServiceName}:5678", | ||
"mode": "SERVAPP", | ||
"Timeout": 14400000, | ||
"ThrottlePerMinute": 12000, | ||
"BlockCommonBots": true, | ||
"SmartShield": { | ||
"Enabled": true | ||
} | ||
} | ||
] | ||
}, | ||
|
||
"{ServiceName}-postgres": { | ||
"image": "postgres:15-alpine", | ||
"container_name": "{ServiceName}-postgres", | ||
"hostname": "{ServiceName}-postgres", | ||
"restart": "unless-stopped", | ||
"networks": { | ||
"{ServiceName}-postgres": {} | ||
}, | ||
"stop_grace_period": 5, | ||
"security_opt": [ | ||
"seccomp:unconfined", | ||
"apparmor:unconfined" | ||
], | ||
"volumes": [ | ||
{ | ||
"source": "{ServiceName}-postgres-data", | ||
"target": "/var/lib/postgresql/data", | ||
"type": "volume" | ||
} | ||
], | ||
"labels": { | ||
"cosmos-persistent-env": "POSTGRES_DB, POSTGRES_USER, POSTGRES_PASSWORD" | ||
}, | ||
"environment": [ | ||
"POSTGRES_DB=n8n", | ||
"POSTGRES_USER=n8n", | ||
"POSTGRES_PASSWORD={Passwords.0}" | ||
] | ||
} | ||
}, | ||
|
||
"networks": { | ||
"{ServiceName}-postgres": { | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "N8n", | ||
"longDescription": "<p>N8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything.</p>", | ||
"description": "N8n (pronounced n-eight-n) helps you to connect any app with an API with any other, and manipulate its data with little or no code.", | ||
"tags": ["workflow", "automation", "self-hosted"], | ||
"repository": "https://github.com/n8n-io/n8n/", | ||
"image": "https://docker.n8n.io/n8nio/n8n", | ||
"supported_architectures": ["amd64", "arm64"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.