How to Dockerize and Deploy Fastify APIs
Jonas Scholz4 min read 01. Nov. 2024Learn to dockerize a Fastify app with this step-by-step guide. Explore a minimal Dockerfile setup, a .dockerignore file, and the commands to build and run your app in a container. Understand the Dockerfile instructions and deploy your containerized Fastify app effortlessly.
5 costly mistakes when deploying Docker containers (and how to dodge them like a pro π)
Lukas Mauser5 min read 28. Okt. 2024Docker is a great tool for deploying web applications, but only if you use it the way it's intended. Thereβs a lot of potential to shoot yourself into the foot. So if you want to save yourself from painful debugging hours, make sure you avoid these common mistakes.
5 Easy Steps to Secure your Server
Jonas Scholz6 min read 28. Okt. 2024Secure your cloud server with five essential steps: set up firewalls, implement fail2ban, configure backups, use UFW for defense in depth, and log in with secure SSH keys instead of passwords.
How to Dockerize and Deploy Express.js APIs
Jonas Scholz3 min read 24. Okt. 2024Quickly deploy Express.js apps with Docker using Dockerfile and Sliplane for seamless containerized deployments and efficient application management.
Building a Pipeline to Deploy Docker Containers to a VPS
Lukas Mauser7 min read 21. Okt. 2024In this follow along, I want to show you a free and convenient way to automatically deploy new versions of your dockerized applications to a virtual private server with a simple
git push
command.