-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Podman #15105
Comments
Kubernetes works fine, there is no need to use docker-compose or docker... |
you can help submit a PR to fix this, we don't have such environment to test |
On hold due to CentOS 8 Stream issue with lack of |
For docker-compose part, this project can also be used directly: https://github.com/containers/podman-compose , it does not need any additional podman-docker-compose setup. |
@m4r1k my target is also rhel8 but i am currently working on fedora34. using |
related pull request |
This issue is being marked stale due to a period of inactivity. If this issue is still relevant, please comment or remove the stale label. Otherwise, this issue will close in 30 days. |
What about this, at least as first step until more resources are available for an official podman support? #15986 (comment) |
Would also be much in favor of additional podman support, due to the need to run this in an RHEL-based HPC environment with no additional K8s infrastructure to deploy Harbor on. |
I was able to get it almost working with just Podman and docker-compose-plugin. After creating needed folders and removing the version checks, it errors out on the logger. Podman doesn't support the rsyslog logger, so I modified the installation scripts, before runtime, to utilize the systemd logger. Unfortunately, the containers appear to rely heavily on rsyslog. Therefore, I'm sure it's quite involved to utilize a different logger |
@ijustworkhereshrug yeah well, that's what I said in the following comment and asked for making the logger configurable: #15986 (comment) |
Is your feature request related to a problem? Please describe.
Today Harbor requires Docker and
docker-compose
for installations and upgrades.https://github.com/goharbor/harbor/blob/master/make/common.sh#L78-L130
https://github.com/goharbor/harbor/blob/master/README.md#install--run
Red Hat has deprecated and removed Docker since RHEL8 :-(
https://access.redhat.com/solutions/3696691
While Docker (the company) is still shipping CE and EE binaries for RHEL, the lack of official support from Red Hat may be a source of conflict.
This proposal is to support also Podman as a container Engine. This is not only in favor of Red Hat but more generally of the added security features of Podman.
http://people.redhat.com/abach/OSAW/FILES/DAY1/5%20Moving%20on%20from%20Docker.pdf
Describe the solution you'd like
Since Podman 3.0,
docker-compose
is fully supportedhttps://www.redhat.com/sysadmin/podman-docker-compose
Perhaps the logic at
check_docker
incommon.sh
could be reworked to also support PodmanDescribe the main design/architecture of your solution
Podman supports
docker
alias but using Podman CLI would be best.The idea would be to first rework the logic in
check_docker
verifying whether Docker is present and meet the minimum version and same story to Podman.Describe the development plan you've considered
Assuming the proposal is acceptable, I can work on a prototype solution and have something available in a few weeks (the logic isn't that hard but perhaps there are all sort of documentation references to update)
The text was updated successfully, but these errors were encountered: