Running Ubuntu 16.04 as an App on Cloudron
-
wrote on Oct 23, 2020, 9:03 AM last edited by andirahmat Oct 23, 2020, 9:10 AM
Hi Everyone. This may be strange to ask. I got this closed source app from my local government encrypted with ioncube. This include installation script that setup it's own lamp. Something like ./install.sh and it needs to be installed on Ubuntu 16.04 other than that the dependencies will not met and installation fail. Currently i run this app on vm on proxmox.
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
-
Hi Everyone. This may be strange to ask. I got this closed source app from my local government encrypted with ioncube. This include installation script that setup it's own lamp. Something like ./install.sh and it needs to be installed on Ubuntu 16.04 other than that the dependencies will not met and installation fail. Currently i run this app on vm on proxmox.
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
wrote on Oct 23, 2020, 9:22 AM last edited by@andirahmat Well, Ubuntu is not a web app and Cloudron is for Web Apps so there is no Cloudron VM App (though that'd be cool). But you could probably build a DOCKERFILE to package up your installation / build.
-
wrote on Oct 23, 2020, 10:36 AM last edited by
Are you suggesting to custom build app for cloudron with ubuntu 16.04 image from dockerhub?
-
Are you suggesting to custom build app for cloudron with ubuntu 16.04 image from dockerhub?
@andirahmat In my opinion, it's gonna be extremely hard to get this to run on Cloudron, if it's at all possible.
-
wrote on Oct 23, 2020, 4:04 PM last edited by
This is possible by using
sysbox
as the docker runc. -
This is possible by using
sysbox
as the docker runc.wrote on Oct 23, 2020, 4:16 PM last edited by@robi said in Running Ubuntu 16.04 as an App on Cloudron:
This is possible by using
sysbox
as the docker runc.Is this ready to use yet?
-
Hi Everyone. This may be strange to ask. I got this closed source app from my local government encrypted with ioncube. This include installation script that setup it's own lamp. Something like ./install.sh and it needs to be installed on Ubuntu 16.04 other than that the dependencies will not met and installation fail. Currently i run this app on vm on proxmox.
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16. -
@robi said in Running Ubuntu 16.04 as an App on Cloudron:
This is possible by using
sysbox
as the docker runc.Is this ready to use yet?
wrote on Oct 25, 2020, 8:05 AM last edited by@andirahmat No
-
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16.wrote on Oct 25, 2020, 8:09 AM last edited byThis post is deleted! -
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16.wrote on Oct 25, 2020, 8:10 AM last edited by@girish said in Running Ubuntu 16.04 as an App on Cloudron:
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16.@girish can you please refer me to the related documentation on doing this? Should i have another cloudron installation for this? Now my cloudron running on ubuntu 18.04
-
@girish said in Running Ubuntu 16.04 as an App on Cloudron:
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16.@girish can you please refer me to the related documentation on doing this? Should i have another cloudron installation for this? Now my cloudron running on ubuntu 18.04
wrote on Oct 25, 2020, 11:54 AM last edited by@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
@girish said in Running Ubuntu 16.04 as an App on Cloudron:
@andirahmat said in Running Ubuntu 16.04 as an App on Cloudron:
I wonder if it possible to run this on cloudron. I mean is there any ubuntu 16.04 served as cloudron app then run this install script on it?
All apps on Cloudron use Ubuntu 18. But you can build a custom app with the base image
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
. That one is ubuntu 16.@girish can you please refer me to the related documentation on doing this? Should i have another cloudron installation for this? Now my cloudron running on ubuntu 18.04
Keep your installation at 18.04. Girlish is talking about the DOCKERFILE’s too FROM line. Cloudron’s base image 1.0 was based on Ubuntu 16 so you should have that entire OSes dependencies to build an app on Ubuntu 16 even though Cloudron itself only runs on 18.04.