From 1dac54b7e7955b738618177b5f8098eb5fa5f439 Mon Sep 17 00:00:00 2001 From: whyour Date: Thu, 10 Mar 2022 00:29:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0podman=E5=AE=89=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index cabb86aa..7b54c520 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,27 @@ # 待完善 ``` +### podman 部署 + +1. podman 安装 + +```bash +https://podman.io/getting-started/installation +``` + +2. 启动容器 + +```bash +podman run -dit \ + --network bridge \ + -v $PWD/ql:/ql/data \ + -p 5700:5700 \ + --name qinglong \ + --hostname qinglong \ + --restart unless-stopped \ + docker.io/whyour/qinglong:latest +``` + ### docker 部署 1. docker 安装