Interesting, I will add it to my list to look at building.
Best posts made by ultraviolet
-
RE: Who could coach me into Dockerizing app for Cloudron ?
I am fairly new to packaging for Cloudron but I have a few packages under my belt. Once I get some time in my personal life I was going to write a series of blogs posts to help others out from my own experiences.
-
RE: Calibre (& Calibre web?)
Hi all,
I have packaged this for Cloudron. I could use some more people to test functionality, conversion of books etc. You can clone, build and install from this repo.EDIT: I should mention it is quite a hefty build it may take some time to build the image. I may need to tidy up any installs too but would like to get some feedback from the community first.
-
RE: Development standards
@girish thank you
I have also packaged calibre-web and I am working on Mayan EDMS just now. If people get use out of it I am happy to share the repo too.
-
RE: App contributions hall of fame
cool, thanks all happy to do this in my spare time to give back to the community. Great to see us all working together to get some amazing apps out there, can't wait to see what the future has in store!
-
RE: Mayan EDMS
@girish thanks
I am going back to the drawing board for this one. So watch this space all....
-
RE: matrix.org (communication)
@girish hi when do you think it will be published to the app store?
-
RE: HashiCorp Vault
If anyone is interested the repo is here https://github.com/euanmcgregor/vault-cloudron
It is working, I am just looking at LDAP integration just now.
-
RE: Calibre (& Calibre web?)
@thetomester13 awesome glad it is of use to you I will look at the LDAP integration soon just finishing off a few other packages just now.
@scooke you will need to install the cloudron cli there is stuff in the docs telling you how. Login to your instance using cloudron login then cloudron build then cloudron install. You will docker either installed locally or using the build service app from the store. Also need a repo on docker hub . Failing that you can use my build which I can get the tag for you.
Also how do you know I am not the one in those movies?
-
RE: Trilium - hierarchical note taking application with focus on building large personal knowledge bases
I have packaged this for Cloudron. I have been using the desktop version for sometime and the Cloudron app is the natural extension of the app. Providing a web interface and the full sync capability to and from the desktop app.
Repo is here
Latest posts made by ultraviolet
-
RE: LDAP logs
@nebulon it does.
I am trying to automate the install of the LDAP details. Teedy has a database that holds the ldap details. I am struggling to get this INSERT statement into start.sh:
INSERT into t_config (cfg_id_c, cfg_value_c) VALUES('LDAP_ENABLED', true), ('LDAP_HOST', $CLOUDRON_LDAP_SERVER), ('LDAP_PORT', $CLOUDRON_LDAP_PORT), ('LDAP_ADMIN_DN', $CLOUDRON_LDAP_BIND_DN), ('LDAP_ADMIN_PASSWORD', $CLOUDRON_LDAP_BIND_PASSWORD), ('LDAP_BASE_DN', $CLOUDRON_LDAP_BIND_PASSWORD), ('LDAP_BASE_DN', $CLOUDRON_LDAP_USERS_BASE_DN), ('LDAP_DEAFULT_EMAIL', 'mail@mail.com'), ('LDAP_FILTER', '(objectclass=user)(|(USERNAME=%uid)(USERNAME=%uid)))'), ('LDAP_DEFAULT_STORAGE', 1024000000);
Any chance you could help with your expertise?
-
RE: LDAP logs
@ultraviolet fixed it missed a ( at the start of the string:
-
RE: LDAP logs
@nebulon took a bit of digging but yes there is something:
The filter &(objectclass=user)(|(adminldap=%uid)(adminldap=%uid))) is invalid.
Which is weird. LDAP search strings are not my strong point
-
RE: LDAP logs
@nebulon thanks.
LDAP for my teddy application is failing any ideas at to why these results might not work?
-
LDAP logs
Hi all,
I was wondering where logs might be for LDAP requests. Trying to troubleshoot an app that is just not wanting to authenticate with LDAP.
thanks -
RE: DMS - teedy.io
https://github.com/campbellmcgregor/teddy-cloudron is the latest very-alpha package.
login is admin/admin and LDAP is not working yet. I am also not sure if it is seeing the postgresdb but would be good for some testing other than me.not really suitable for production use yet.
EDIT: postgres is being used as its database
-
RE: Mayan EDMS
ok think we are good to go. I have pushed the code to my github the repo I will merge with the Cloudron hosted git soon.
Just need some people to test install etc. and then will look at getting some tests into the package. It is still on version 3.4.17 as the latest version 3.5.1 has some issues in the celery queues which I will look at once that branch is a bit more stable.
-
RE: Mayan EDMS
I have come up with another way of installing to allow me to update the package. In the start.sh it will do it's initial install but that function of the app installs further items into /app/code/ which during an non debug session is RO. Is there any other way to allow this to install then seal the system to RO?
An example during initialsetup:
Applying tags.0006_documenttag... OK Applying tags.0007_auto_20170118_1758... OK Applying tags.0008_auto_20180917_0646... OK Applying user_management.0001_initial... OK Applying web_links.0001_initial... OK Applying web_links.0002_auto_20191210_0436... OK Applying web_links.0003_auto_20191211_0233... OK Installing package: Bootstrap (=3.4.1)... Downloading... Verifying... Extracting... Patching files... Traceback (most recent call last): File "/usr/lib/python3.7/pathlib.py", line 1258, in mkdir self._accessor.mkdir(self, mode) FileNotFoundError: [Errno 2] No such file or directory: '/app/code/venv/lib/python3.7/site-packages/mayan/apps/appearance/static/appearance/node_modules/bootstrap' <snip> self._accessor.mkdir(self, mode) OSError: [Errno 30] Read-only file system: '/app/code/venv/lib/python3.7/site-packages/mayan/apps/appearance/static/appearance/node_modules'
Or if there is any other suggestions that I could try to get this installed?
EDIT: I should add I am unable to do this during build as the app needs the database etc. to migrate and change the database