LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Deploy n8n with Docker Compose
n8n is a powerful workflow automation tool that allows you to connect different services and automate tasks. While n8n offers a cloud version, self-hosting provides more control and flexibility. The r…
Docker Inside GitLab Runner's Docker Executor: A Docker-in-Docker Practice
This article explains how to use Docker and its CLI plugins inside a Docker container running as a GitLab Runner executor. This can be useful for running Docker commands on a remote host or for using Docker plugins that are not available on the host system.
Install Docker Compose from Binary
This following script can be used on a Ubuntu server to install the latest version of Docker Compose from the binary.
使用 Docker Compose 私有部署 GitLab 超简单
在这篇文章里,我将介绍 怎样使用 docker-compose 来部署一个私有部署的 GitLab 实例 设置域名反向代理 配置 gitlab-runner 实自动化流水线 配置备份与恢复 配置要求 目前版本的 gitlab-ce 需要 4-6GB 的 RAM 来运行,建议配置 8GB 以上的服务器。 安装 Docker 与 docker-compose Docker 是一种开源的容器化平台…
Build Docker Image Concurrently with BuildKit
Docker Pipeline Taking Too Much Time to Finish? I used to build docker image step by step, that's before I found out about docker's BuildKit. With the BuildKit, the building time was reduced by 60% (i…
Set Up Nexus - The All-In-One Repository Manager In Just A Millisec
Setting up a Sonatype Nexus Repository Manager via docker-compose is far easier than you can imagine. Make a docker-compose.yml file version: "2" services: nexus: restart: always image: son…
Setup Redis with docker-compose
version: '3.5' services: redis: container_name: redis image: redis command: redis-server --appendonly yes --requirepass $REDIS_PASSWORD ports: - "6379:6379" volumes: …
Self-managed GitLab Cookbook
I've been maintaining self-managed GitLab instances for a few years. gitlab-ce is fully dockerized, you can easily deploy a GitLab container within a few minutes. Here's my cookbook. Prerequisites To …
Bootstrap a GitLab pipeline in no time
Requirements A VPS or Linux machine with more than 4GB RAM; Docker and docker-compose installed; Linux OS; GitLab team officially stated the requirement for RAM is 2GB, but I am sure you really need…