Docker

How to Install Docker on AlmaLinux 9

To install Docker on AlmaLinux 9, enable Docker repository To install docker, run To start docker on boot, run To

Docker

How to install Gearman Job Server in Docker

Gearman is an Open Source job server. http://gearman.org/getting-started/ To install it using docker, first install docker, then run docker run

How to run docker with csf firewall

When running docker on a server with CSF firewall, you may face network connection error because iptables rules added by

Docker

How to Install Docker on Oracle Linux 8

Oracle Linux Server 8 does not include docker in the official repository, it provides Podman as an alternative to docker.

Docker

How to install Docker on CentOS 8

RHEL replaced Docker on RHEL 8 (CentOS 8) with podman. To install Docker on CentOS, you can do the fallowing

podman

podman

Podman is a daemonless, open source, Linux native tool designed to make it easy to find, run, build, share and

How to check if running inside Docker?

How to check if running inside Docker?

To check if you are inside a docker container, run the command cat /proc/1/cgroup | grep –color docker If you

Docker

Create Dockerfile From Image

If you have a docker image and don’t have the Dockerfile used to create the image, dfimage can help you

Build a docker container with Apache

Build a docker container with Apache

To create a docker container with Apache, create a Dockerfile mkdir my-app cd my-app vi Dockerfile Paste following content into

Install Odoo using Docker

Install Odoo using Docker

Odoo is an open source ERP and CRM software written in python. To install Odoo using docker, first install docker

Docker delete container after running

Docker delete container after running

When you run a docker image, it create a container and run it. After docker container stop, container stays, so

Run PostgreSQL in Docker

Run PostgreSQL in Docker

To run PostgreSQL on docker, create a directory for saving the data presistant mkdir -p /opt/my-postgresql run docker container docker