Suche
Kategorien
Über…
Das ist das Blog von Sven Hasselbach über Themen aus der Entwicklung und alles, was ihm sonst so durch den Kopf geht.
Seit 2003 als freiberuflicher Entwickler deutschlandweit im Einsatz, mit dem Schwerpunkten Lotus Notes & XPages, Spring, Java & OSGi
IBM ICS Champion 2013
Um Kontakt mit mir aufzunehmen, einfach eine eMail an contact<at>hasselba.ch schicken oder mich bei XING finden:
Projektanfragen sind immer willkommen!-
Neueste Beiträge
Neueste Kommentare
- Chris Eggenberger bei xsp.application.context.proxy
- Chris Eggenberger bei xsp.application.context.proxy
- Displaying Markdown in an XPage using the showdown.js library - wp2020.focul.net bei XPages: Inject CSJS code at page top
Archive
Meta
Schlagwort-Archive: Docker
node.js, domino-db & Docker (11): Usefull Docker Commands
Building Images docker build -t domino-express . Creates a new docker container named domino-express, using the current folder („.“). Starting / Stopping docker run –name dominoexpress -p 3000:3000 -d -it domino-express Starts the image domino-express, allows access to port 3000 … Weiterlesen
node.js, domino-db & Docker (10): Protecting Proton Keys
Before we are looking into the details how to setup a non-anynomous connection to Domino’s Proton server, I have an advice for protecting the key files required for the connection. The keys are not password protected, and this is a … Weiterlesen
Veröffentlicht unter Docker, ES6, Java Script, node.js, Security
Verschlagwortet mit Docker, domino-db, ES6, Java Script, node.js, Security
Ein Kommentar
node.js, domino-db & Docker (5): memcached
To use memcached in our Docker container, we have to modify the existing Dockerfile a little bit. First it is required to install memcached in the container itself, and then it is required to change the CMD command to start … Weiterlesen