Projekt

Allgemein

Profil

Podman » Historie » Revision 2

Revision 1 (Jeremias Keihsler, 23.09.2021 10:11) → Revision 2/9 (Jeremias Keihsler, 23.09.2021 10:12)

h1. Podman 

 h2. install 

 <pre><code class="shell"> 
 yum install podman 
 yum install podman-compose 
 </code></pre> 

 h2. create container 

 see also: 
 https://www.redhat.com/sysadmin/wordpress-container 
 https://rancher.com/learning-paths/how-to-build-and-run-your-own-container-images/ 
 https://docs.podman.io/en/latest/markdown/podman-build.1.html 

 create @~/container.user/wordpress.user/Dockerfile@ @~/container.user/wordpress.user/dockerfile@ 

 <pre> 
 FROM docker.io/rockylinux/rockylinux 
 MAINTAINER jke &lt;j@keihsler.com&gt; 
 RUN dnf module enable -y php:7.4 
 RUN yum install -y mariadb-server mariadb php php-apcu php-intl php-mbstring php-xml php-json php-mysqlnd crontabs cronie iputils net-tools;yum clean all 
 RUN systemctl enable mariadb 
 RUN systemctl enable httpd 
 RUN systemctl disable systemd-update-utmp.service 
 ENTRYPOINT ["/sbin/init"] 
 CMD ["/sbin/init"] 
 </pre> 

 <pre><code class="shell"> 
 cd ~/container.user/wordpress.user/ 
 podman build -t wordpress_user . 
 </code></pre>