Category: Docker

XLS-to-CSV converter in custom-build Docker container

Dockerfile – to create custom docker containerdocker-compose.yml – to build/start containerconverter.py – python script to convert exel filesentrypoint.sh – to start cron service in containercrontab.txt – to schedule cron task to run every 5 min Dockerfile content: docker-compose.yml content: content of converter.py content of entrypoint.sh content of crontab.txt build and start converter enjoy results.

We have LLM at home!

This will install Local LLM to your server. Basic installation. You will need to do a lot before get benefits from having LLM at home. Prepare server: Ensure Docker is installed on your server. Use the following commands to install Docker and docker-compose if not already installed: Ensure sufficient CPU and memory are allocated for […]

WordPress in docker deployment

Case: customer want to have WordPress in docker container. Solution: below. 🙂 Folder structure: control script content (control_wp.sh) docker compose file nginx_conf/nginx.conf example: nginx_conf/nginx.template1 example: nginx_conf/nginx.template2 example: search for “your_domain.ca” and replace with your values. nginx_conf/options-ssl-nginx.conf example: activate_server.sh content: execute following script to finalize installation Go to https://your-server-domain-name and follow on-screen instaructions to configure wordpress server. Enjoy […]

Open Journal Systems (OJS) in Docker

Scenario: customer want to have OJS in docker containers. Solution: official OJS docker container + Mariadb container deployed on Ubuntu 24.04 Solution. this solution specifically designed for OJS v3_3_0-8. upgrade from it to 3_3_0-9 working fine, but for different versions there could be some differences. Update OS and install necesary packages install docker GPG key […]

Custom-build Docker for Autodesk license server

Scenario: Customer want to have Licensing server in docker for simplify of update/upgrade process and simplify license update process. Solution: Custom-build Docker container. Solution. Create dirs for project Drop your license file to Dockerfile to build container content of docker-compose.yml Content of control script (/opt/lic/control_lic.sh) content of files/entypoint.sh build container with start server with done. […]

Custom-build Docker for Matlab Licensing server

Scenario: Customer want to have Licensing server in docker for simplify of update/upgrade process and simplify license update process. Solution: Custom-build Docker container. Solution. Create dirs for project Replace license file with correct one: /opt/lic_matlab/license/license.dat  Create shell-script to control docker and other files: content of control_lic.sh Content of docker-compose.yml content of Dockerfile content of files/entrypoint.sh Build […]

Full LAMP stack in docker

Scenario: Customer want to have entire LAMP stack in docker for better scalability, simple management, updates, etc. Solution: This will install standard LAMP stack + phpMyAdmin + HTTPS with Let`s encrypt. (this specific configuration created for OJS 3.5. Modify it for your needs) Solution directory structure: Docker-compose content: Content of php/Dockerfile: content of php/vhost.conf (Apache […]

Enroll exotic servers to FreeIPA

Following procedure describe enrollment procedure to enroll Linux servers to FreeIPA. Most popular distributions have freeipa-client for them. this procedure designed for SLES, but similar concept should work with other distros. Preparation: Install SLES with following modules (or activate mentioned modules) Choose system role: minimal. Use XFS (or other you prefer. do not use btrfs). […]