diff --git a/docs/public/install-scripts/Mealie.json b/docs/public/install-scripts/Mealie.json new file mode 100644 index 00000000..7bc24b8f --- /dev/null +++ b/docs/public/install-scripts/Mealie.json @@ -0,0 +1,61 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial" + }, + "requirements": { + "locations": [ + "ApplicationsCapacity", "ApplicationsPerformance" + ], + "specifications": [ + "2CORE", + "1024MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30111] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsCapacity)/mealie/data", "owner": { "user": "apps" }, "snapshot": { "id": "data" } }, + { "path": "$LOCATION(ApplicationsPerformance)/mealie/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } } + ], + "app_values": { + "mealie": { + "allow_signup": true, + "base_url": "http://$SERVER_LAN_IP:30111/", + "db_password": "$RANDOM_STRING(7)", + "default_group": "Home" + }, + "network": { + "networks": [], + "web_port": { + "bind_mode": "published", + "port_number": 30111 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": 4096 + } + }, + "run_as": { + "group": 568, + "user": 568 + }, + "storage": { + "data": "$HOST_PATH($LOCATION(ApplicationsCapacity)/mealie/data)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/mealie/postgres_data)" + } + } + } \ No newline at end of file