Deploying Snipe-IT Asset Management System Using Docker

Snipe-IT is an open-source application for tracking IT assets, including hardware, software licenses, and accessories. Setting Up the Docker Environment Install Docker and Docker Compose on your host system. Configuring Environment Variables Create a directory for configuration files and generate an environment file. mkdir -p /opt/snipe-it/conf ...

Posted on Fri, 15 May 2026 09:41:18 +0000 by ell0bo

MySpeed: Open-Source Network Speed Testing and 24/7 Performance Monitoring Tool

Have you ever experienced frustratingly slow internet speeds without a clear cause? Or wanted a robust tool for long-term network performance tracking? MySpeed offers a solution by combining instant speed tests with continuous monitoring capabilities. This article walks through its features, installation, and usage. What is MySpeed? MySpeed is ...

Posted on Fri, 15 May 2026 06:30:12 +0000 by Replika

Essential Docker Command Reference

Essential Docker Command Reference1. Searching for Imagesdocker search openjdk2. Pulling Imagesdocker pull docker.io/library/openjdk:8docker pull centos:7 is equivalent to docker pull registry.hub.docker.com/centos:73. Inspecting Image Detailsdocker inspect centos:74. Viewing Image Historydocker history centos:75. Removing Imagesdocker rmi alpi ...

Posted on Fri, 15 May 2026 01:36:31 +0000 by dagee

Setting Up MySQL Containers on CentOS 7 Using Docker

Preparing Mount Points Create directories for persistent configuration and data storage: mkdir -p /opt/mysql-instance/{conf,storage} Configuring Character Sets Create the configuration file at /opt/mysql-instance/conf/custom.cnf: [mysqld] user=mysql character-set-server=utf8mb4 [client] default-character-set=utf8mb4 [mysql] default-character ...

Posted on Fri, 15 May 2026 00:09:03 +0000 by contex

Building a Production-Ready Qwen3 Model Service Platform from Scratch

System Requirements This guide covers deploying Qwen3 models on an Ubuntu 22.04 cloud instance equipped with an NVIDIA A10 GPU (24GB VRAM). The setup requires network connectivity for downloading container images and model files. Environment Verification Confirm GPU availability: lspci | grep -i nvidia gcc --version NVIDIA Driver Installation ...

Posted on Thu, 14 May 2026 21:11:23 +0000 by phyzar

Setting up a Kubernetes Cluster on Ubuntu Using kubeadm

Kubernetes is an open-source container orchestration platform, and kubeadm is a tool provided by the Kubernetes team for quickly setting up a Kubernetes cluster. This article walks through the process of creating a Kubernetes cluster on Ubuntu using kubeadm, covering prerequisites, installing components, initializing the cluster, and adding wor ...

Posted on Thu, 14 May 2026 20:19:32 +0000 by puretony

Deploying Jenkins Using Docker

Pull the Jenkins Docker image. docker pull jenkins/jenkins Set up a persistent storage directory on the host and adjust permissions. mkdir -p /var/jenkins_data chmod 777 /var/jenkins_data Launch a Jenkins container with custom configurations. -d runs the container in detached mode. -p 10240:8080 maps the container's Jenkins web interfac ...

Posted on Thu, 14 May 2026 13:26:49 +0000 by alexdoug

Docker-Based Confluence Deployment and Configuration

Image Version Selection Identify the appropriate release tag from the official Atlassian Docker Hub repository. Tags follow the pattern {version}-{jdk} (e.g., 8.5.0-jdk17). For production environments, prefer Long-Term Support (LTS) releases over feature releases to ensure stability and extended support cycles. Available versions are listed at: ...

Posted on Thu, 14 May 2026 10:56:59 +0000 by jjoves

Building a Team Technical Documentation Site with Node.js and Hexo in Docker

Node.js is a JavaScript runtime built on Chrome's V8 engine, designed to execute JavaScript code on the server side. It is well-suited for building scalable and high-performance web applications due to its event-driven, non-blocking I/O model, making it lightweight and efficient for data-intensive real-time applications on distributed devices. ...

Posted on Wed, 13 May 2026 20:41:14 +0000 by swatisonee

Essential Dockerfile Instructions for Python Backend Development

Core Dockerfile Instructions Base Image Specification Purpose Defines the foundation image for the container. Syntax FROM <image-name> FROM <image-name>:<tag> FROM <image-name>@<digest> Example using a Python environment with ODBC support: FROM tadeorubio/pyodbc-msodbcsql17:latest Key Points Must be the first no ...

Posted on Wed, 13 May 2026 20:27:13 +0000 by DarrenL