diff options
Diffstat (limited to 'docker/README.md')
-rw-r--r-- | docker/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/README.md b/docker/README.md index ad897a1..8c58949 100644 --- a/docker/README.md +++ b/docker/README.md @@ -9,6 +9,8 @@ docker build -t mscp-ubuntu:20.04 -f docker/ubuntu-20.04.Dockerfile . docker build -t mscp-ubuntu:22.04 -f docker/ubuntu-22.04.Dockerfile . docker build -t mscp-centos:8 -f docker/centos-8.Dockerfile . + +docker build -t mscp-rocky:8.6 -f docker/rocky-8.6.Dockerfile . ``` Test `mscp` in the containers. @@ -19,6 +21,8 @@ docker run --init --rm mscp-ubuntu:20.04 /mscp/scripts/test-in-container.sh docker run --init --rm mscp-ubuntu:22.04 /mscp/scripts/test-in-container.sh docker run --init --rm mscp-centos:8 /mscp/scripts/test-in-container.sh + +docker run --init --rm mscp-rocky:8.6 /mscp/scripts/test-in-container.sh ``` Retrieve deb/rpm packages. @@ -32,6 +36,9 @@ docker run --rm -v (pwd):/out mscp-ubuntu:22.04 \ docker run --rm -v (pwd):/out mscp-centos:8 \ cp /mscp/build/mscp_0.0.0-centos-8-x86_64.rpm /out/ + +docker run --rm -v (pwd):/out mscp-rocky:8.6 \ + cp /mscp/build/mscp_0.0.0-rocky-8.6-x86_64.rpm /out/ ``` I don't know whether these are good way.
\ No newline at end of file |