ModularSystems Blog

Welcome to the engineering blog of []ModularSystems, where we will be share our experiences and insights with the latest trends in Cloud Native and low and zero carbon emission computing.

Our mission is to provide the most sustainable and efficient IT solutions and managed services to provide competitive solutions at competitive prices.

We offer consulting and custom programming services, with solutions compatible for all major cloud providers and stacks.

Introduction to Docker

Introduction to Docker This blogpost will be an introduction to Docker. What is it? What is its purpose? How do you set it up? How do you use it? And, what is compose and how does it relate to Docker? What is it? Docker is a desktop application used to create containers. Containers are isolated development environments that the application you’re developing depends on in order to run as expected. What if you aren’t the only one developing an application....

August 7, 2023 · 4 min · Autif Kamal

Dockerized SvelteKit and PocketBase

Resources This tutorial assumes that you have already have a Dockerized SvelteKit project. If you do not, start with the Run SvelteKit in Docker. What is PocketBase? PocketBase is a cloud-based database management service that allows developers to quickly and easily create, manage, and access databases for their applications. It provides an intuitive interface for creating and modifying database schemas built on SQLite. One of the main benefits of using PocketBase is that it allows developers to quickly and easily create and use a database....

January 26, 2023 · 5 min · William Biederman

Run Sveltekit in Docker

Resources Install Node.js Install Docker Install create-svelte: - Run npm install create-svelte-app -g What is SvelteKit? SvelteKit is a tool that lets developers use the Svelte framework to quickly build and deliver websites. With Docker, nginx, and SvelteKit, you can create a base image to use as a starting point for your new Svelte projects. Svelte allows developers to create modular components and load them into any part of their website easily and handles routing so developers can focus on creating pages, knowing that they’ll just work....

January 26, 2023 · 4 min · William Biederman

Getting Started With kind

Resources kind documentation go Installation docker Installation kind Quick Start kind Configuration kind Advanced Configuration kubectl Installation What is kind? kind is a tool for running Kubernetes locally. It uses docker to create kubelet containers, which simulates running nodes in a cluster. This makes kind a valuable tool for local development and CI alike when testing applications designed to run on Kubernetes. Requirements and Installation go and docker need to be installed, first....

January 25, 2023 · 3 min · William Biederman