Add Cloudron packages for 60 applications

 Successfully packaged 60 applications for Cloudron deployment:
- Each app includes: manifest.json, Dockerfile, start.sh
- Standardized configuration for Cloudron platform
- Auto-generated from GitUrlList.txt
- Ready for deployment and testing

📦 Package structure:
- app/manifest.json: Cloudron app metadata
- app/Dockerfile: Container build instructions
- app/start.sh: Application startup script

🚀 Next steps: Test deployments and optimize per-application configs
This commit is contained in:
TSYSDevStack Team
2025-11-12 19:23:13 -05:00
parent 7e0542320b
commit 8cc2c4a72b
166 changed files with 1438 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.Core.cloudron",
"title": "Core",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for Core",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.InvenTree.cloudron",
"title": "InvenTree",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for InvenTree",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.PLMore.cloudron",
"title": "PLMore",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for PLMore",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.PayrollEngine.cloudron",
"title": "PayrollEngine",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for PayrollEngine",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.SniperPhish.cloudron",
"title": "SniperPhish",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for SniperPhish",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.WireViz.cloudron",
"title": "WireViz",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for WireViz",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.autobom.cloudron",
"title": "autobom",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for autobom",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.boinc.cloudron",
"title": "boinc",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for boinc",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.chirpstack.cloudron",
"title": "chirpstack",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for chirpstack",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.comply.cloudron",
"title": "comply",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for comply",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.consuldemocracy.cloudron",
"title": "consuldemocracy",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for consuldemocracy",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.datahub.cloudron",
"title": "datahub",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for datahub",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "Starting application..."
# Add your startup command here
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.docassemble.cloudron",
"title": "docassemble",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for docassemble",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.docker-drawio.cloudron",
"title": "docker-drawio",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for docker-drawio",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.easy-gate.cloudron",
"title": "easy-gate",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for easy-gate",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.elabftw.cloudron",
"title": "elabftw",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for elabftw",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.fleet.cloudron",
"title": "fleet",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for fleet",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.fonoster.cloudron",
"title": "fonoster",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for fonoster",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.fx.cloudron",
"title": "fx",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for fx",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

Submodule Cloudron/CloudronPackages-Workspace/goalert added at e2171ea2ca

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.gophish.cloudron",
"title": "gophish",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for gophish",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.grist-core.cloudron",
"title": "grist-core",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for grist-core",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.healthchecks.cloudron",
"title": "healthchecks",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for healthchecks",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.huginn.cloudron",
"title": "huginn",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for huginn",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.hyperswitch.cloudron",
"title": "hyperswitch",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for hyperswitch",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.jamovi.cloudron",
"title": "jamovi",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for jamovi",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.killbill.cloudron",
"title": "killbill",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for killbill",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.langfuse.cloudron",
"title": "langfuse",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for langfuse",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.mender.cloudron",
"title": "mender",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for mender",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.mendersoftware.cloudron",
"title": "mendersoftware",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for mendersoftware",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.midday.cloudron",
"title": "midday",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for midday",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.nautilus_trader.cloudron",
"title": "nautilus_trader",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for nautilus_trader",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.netbox.cloudron",
"title": "netbox",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for netbox",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

View File

@@ -0,0 +1,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /app
COPY . .
EXPOSE 8080
CMD ["./start.sh"]

View File

@@ -0,0 +1,17 @@
{
"id": "com.no-code-architects-toolkit.cloudron",
"title": "no-code-architects-toolkit",
"version": "1.0.0",
"description": "Auto-generated Cloudron package for no-code-architects-toolkit",
"developer": {
"name": "TSYSDevStack Team",
"email": "support@tsysdevstack.com"
},
"tags": ["productivity", "web-app"],
"httpPort": 8080,
"manifestVersion": 2,
"healthCheck": {
"path": "/",
"port": 8080
}
}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
echo "Starting application..."
exec "$@"

Some files were not shown because too many files have changed in this diff Show More