Comments on: wordpress quick installation with docker on your own pc https://www.codehamster.com/docker/wordpress-quick-installation-with-docker-on-your-own-pc/ "Everything should be made as simple as possible, but not simpler." -- Albert Einstein Sat, 12 Oct 2024 03:34:23 +0000 hourly 1 https://wordpress.org/?v=6.7.1 By: Install WordPress with Bitnami Docker on local host – Fast! - Hosting solutions https://www.codehamster.com/docker/wordpress-quick-installation-with-docker-on-your-own-pc/#comment-2820 Thu, 18 Mar 2021 09:10:26 +0000 http://www.codehamster.com/?p=877#comment-2820 […] wordpress quick installation with docker on your own pc […]

]]>
By: connygy https://www.codehamster.com/docker/wordpress-quick-installation-with-docker-on-your-own-pc/#comment-2511 Wed, 06 Mar 2019 19:49:59 +0000 http://www.codehamster.com/?p=877#comment-2511 Hi Txavi, thanks very much for the correction!

]]>
By: Txavi the human https://www.codehamster.com/docker/wordpress-quick-installation-with-docker-on-your-own-pc/#comment-2462 Fri, 22 Feb 2019 17:14:56 +0000 http://www.codehamster.com/?p=877#comment-2462 In reply to Txavi the human.

Hi, I found the problem, mounting local folders in a non-root container is problematic, so you can fix it adding to the docker-compose.yml this:

fix-mariadb-permissions:
image: ‘bitnami/mariadb:latest’
user: root
command: chown -R 1001:1001 /bitnami
volumes:
– /tmp/data/mysql:/bitnami

More info here: https://github.com/bitnami/bitnami-docker-mariadb/issues/136#issuecomment-354644226

]]>
By: Txavi the human https://www.codehamster.com/docker/wordpress-quick-installation-with-docker-on-your-own-pc/#comment-2448 Fri, 15 Feb 2019 15:08:19 +0000 http://www.codehamster.com/?p=877#comment-2448 Hi, i’m trying to use your docker compose config, but I can´t load the wordpress admin page localhost:80, the phpMyAdmin works if I use the localhost:8080, I don´t know what is happening

]]>