Merge branch 'master' into feat/configurable_network_interface
This commit is contained in:
commit
d5edba8ead
|
@ -2,8 +2,8 @@
|
||||||
"$schema": "../schema.json",
|
"$schema": "../schema.json",
|
||||||
"name": "Adguard",
|
"name": "Adguard",
|
||||||
"available": true,
|
"available": true,
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "0.107.7",
|
"version": "0.107.13",
|
||||||
"port": 8104,
|
"port": 8104,
|
||||||
"id": "adguard",
|
"id": "adguard",
|
||||||
"categories": ["network", "security"],
|
"categories": ["network", "security"],
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
version: "3.7"
|
version: "3.7"
|
||||||
services:
|
services:
|
||||||
adguard:
|
adguard:
|
||||||
image: adguard/adguardhome:v0.107.7
|
image: adguard/adguardhome:v0.107.13
|
||||||
container_name: adguard
|
container_name: adguard
|
||||||
volumes:
|
volumes:
|
||||||
- "${APP_DATA_DIR}/data/work:/opt/adguardhome/work"
|
- "${APP_DATA_DIR}/data/work:/opt/adguardhome/work"
|
||||||
|
|
|
@ -4,13 +4,21 @@
|
||||||
"available": true,
|
"available": true,
|
||||||
"port": 8094,
|
"port": 8094,
|
||||||
"id": "n8n",
|
"id": "n8n",
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "0.186.1",
|
"version": "0.195.5",
|
||||||
"categories": ["automation"],
|
"categories": ["automation"],
|
||||||
"description": "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.",
|
"description": "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.",
|
||||||
"short_desc": "Workflow Automation Tool. Alternative to Zapier",
|
"short_desc": "Workflow Automation Tool. Alternative to Zapier",
|
||||||
"author": "n8n.io",
|
"author": "n8n.io",
|
||||||
"source": "https://github.com/n8n-io/n8n",
|
"source": "https://github.com/n8n-io/n8n",
|
||||||
"website": "https://n8n.io/",
|
"website": "https://n8n.io/",
|
||||||
"form_fields": []
|
"form_fields": [
|
||||||
|
{
|
||||||
|
"type": "random",
|
||||||
|
"label": "Database password",
|
||||||
|
"min": 30,
|
||||||
|
"max": 30,
|
||||||
|
"env_variable": "DB_PASSWORD"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
- ${APP_DATA_DIR}/data/db:/var/lib/postgresql/data
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=tipi
|
- POSTGRES_PASSWORD=${DB_PASSWORD}
|
||||||
- POSTGRES_USER=tipi
|
- POSTGRES_USER=tipi
|
||||||
- POSTGRES_DB=n8n
|
- POSTGRES_DB=n8n
|
||||||
networks:
|
networks:
|
||||||
|
@ -16,7 +16,7 @@ services:
|
||||||
|
|
||||||
n8n:
|
n8n:
|
||||||
container_name: n8n
|
container_name: n8n
|
||||||
image: n8nio/n8n:0.186.1
|
image: n8nio/n8n:0.195.5
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${APP_PORT}:5678
|
- ${APP_PORT}:5678
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
"ports": [53]
|
"ports": [53]
|
||||||
},
|
},
|
||||||
"id": "pihole",
|
"id": "pihole",
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "2022.07.1",
|
"version": "2022.09.4",
|
||||||
"categories": ["network", "security"],
|
"categories": ["network", "security"],
|
||||||
"description": "The Pi-hole® is a DNS sinkhole that protects your devices from unwanted content without installing any client-side software.",
|
"description": "The Pi-hole® is a DNS sinkhole that protects your devices from unwanted content without installing any client-side software.",
|
||||||
"short_desc": "A black hole for Internet advertisements",
|
"short_desc": "A black hole for Internet advertisements",
|
||||||
|
|
|
@ -14,7 +14,7 @@ services:
|
||||||
pihole:
|
pihole:
|
||||||
# depends_on: [unbound]
|
# depends_on: [unbound]
|
||||||
container_name: pihole
|
container_name: pihole
|
||||||
image: pihole/pihole:2022.07.1
|
image: pihole/pihole:2022.09.4
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
hostname: pihole
|
hostname: pihole
|
||||||
dns:
|
dns:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user