### Login Username: user \ Password: bitnami ### Install podman and podman-comppose ``` sudo apt update && sudo apt install -y podman podman-compose ``` ### Download compose file ``` curl -sfSL -o compose.yml ``` ### Pull container images (apox 2.5GB) ``` podman-compose pull ``` ## Bring up containers If you have another service on these ports change them appropiately (left ones) ``` podman-compose up -d ``` ### Check logs ``` podman logs -f wp_wordpress_1 ``` ### Bring down containers ``` podman-compose down ``` ### Purge installation (remove podman volumes) ``` podman volume rm wp_mariadb_data wp_wordpress_data ```