docker

Deploy docker containers in VPS with GitHub Actions

Deploy docker containers in VPS with GitHub Actions

For the spanish version, check my personal blog We all love Docker, and if you don't, you should. Docker is a great tool that allows us to create containers with our applications and run them in any environment. But what if we want to deploy our containers in a VPS? In this post, I will show you how to deploy your Docker containers in a VPS using GitHub Actions. What are we going to do? We are going to build a simple workflow that will allow us to deploy our custom images to GitHub Container Registry, pull them from our…
Read More
Using MongoDB on Docker

Using MongoDB on Docker

Introduction MongoDB is a widely popular NoSQL database today due to its simplicity and several advantages over relational databases. Through this guide, you'll learn how to quickly use MongoDB within Docker without going through many complex installation steps. Note that before starting, you need to have Docker installed on your machine. Starting MongoDB on Docker You just need to execute the following command: docker run -e MONGO_INITDB_ROOT_USERNAME=username -e MONGO_INITDB_ROOT_PASSWORD=password --name mongo -p 27017:27017 -v /data/db:/data/db -d mongo Enter fullscreen mode Exit fullscreen mode Explanation of the command: - -e MONGO_INITDB_ROOT_USERNAME=username -e MONGO_INITDB_ROOT_PASSWORD=password: Sets environment variables for MongoDB initialization. You can…
Read More
Docker DevTools Day 2.0: Dive Deep into the Docker Developer Ecosystem

Docker DevTools Day 2.0: Dive Deep into the Docker Developer Ecosystem

Calling all Docker enthusiasts! Join us for the second edition of Docker DevTools Day Bengaluru on June 22nd. This community event is your chance to dive deep into the world of developer tooling that revolves around Docker. What to Expect Engaging Talks: Gain valuable insights from industry leaders as they explore cutting-edge tools, real-world use cases, and how to overcome common development challenges with Docker. Interactive Workshops: Solidify your understanding through hands-on exercises led by experts. Networking Opportunities: Connect with like-minded developers and industry professionals to share experiences and build a vibrant Docker community. Docker DevTools Day 2.0 Agenda Time…
Read More
Load Testing Solium Infernum with Docker, Kubernetes and Enemy AI

Load Testing Solium Infernum with Docker, Kubernetes and Enemy AI

Load testing a video game is a critical part of the development process if you have any intention of building online systems into your game. As we’ve seen many times before, it's important that you plan for both critical success as well as critical failure when it comes to online multiplayer systems. The results of being over or under prepared can have devastating effects on your players, or your bank account. For Solium Infernum, we had a 4-6 player, turn-based, asynchronous multiplayer game. That last part is important because it means that a game of Solium Infernum can last for…
Read More
No widgets found. Go to Widget page and add the widget in Offcanvas Sidebar Widget Area.