CentOS 8.x setup applications using podman containers

From Notes_Wiki
Revision as of 11:58, 5 July 2020 by Saurabh (talk | contribs) (Created page with "<yambe:breadcrumb self="Setup applications using podman containers">CentOS 8.x podman|podman</yambe:breadcrumb> =CentOS 8.x setup applications using podman containers= ==Ownc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<yambe:breadcrumb self="Setup applications using podman containers">CentOS 8.x podman|podman</yambe:breadcrumb>

CentOS 8.x setup applications using podman containers

Owncloud on podman

To setup owncloud on top of podman use:

   podman pull docker.io/library/owncloud
   podman pod create --name owncloud
   podman run -dt --name owncloud1 --pod owncloud owncloud

The above image does not includes php-mariadb drivers hence it is useful only for experimental setups that can work on top of SQlite database.

Then get information about pod IP using:

   podman pod list
   podman pod inspect <pod-id>-infra | grep -i ip

Initialize setup with desired root password and SQlite database.


Owncloud with LDAP on podman

For owncloud with ldap support use:

   podman pull docker.io/mrskensington/owncloud-ldap
   podman run -dt --name owncloud1 -P owncloud-ldap

After this go to Apps and enable LDAP App. Then go to Admin section and configure LDAP based authentication. Not tested


<yambe:breadcrumb self="Setup applications using podman containers">CentOS 8.x podman|podman</yambe:breadcrumb>