Difference between revisions of "CentOS 8.x setup applications using podman containers"

From Notes_Wiki
(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...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb self="Setup applications using podman containers">CentOS 8.x podman|podman</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 8.x]] > [[CentOS 8.x virtualization|Virtualization]] > [[CentOS 8.x podman|podman]] > [[CentOS 8.x setup applications using podman containers|Setup applications using podman containers]]
=CentOS 8.x setup applications using podman containers=


==Owncloud on podman==
==Owncloud on podman==
Line 31: Line 30:




<yambe:breadcrumb self="Setup applications using podman containers">CentOS 8.x podman|podman</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 8.x]] > [[CentOS 8.x virtualization|Virtualization]] > [[CentOS 8.x podman|podman]] > [[CentOS 8.x setup applications using podman containers|Setup applications using podman containers]]

Latest revision as of 03:49, 23 April 2022

Home > CentOS > CentOS 8.x > Virtualization > podman > 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


Home > CentOS > CentOS 8.x > Virtualization > podman > Setup applications using podman containers