skip to Main Content

Elementor – Is it possible to have dockerized wordpress with same performance as a wordpress server install?

I am experimenting with a wordpress docker install. I used the basic install with mounted volumes. docker-compose.yml version: '3.3' services: db: image: mysql:5.7 volumes: - ./mysql:/var/lib/mysql restart: always environment: MYSQL_ROOT_PASSWORD: somewordpress MYSQL_DATABASE: wordpress MYSQL_USER: wordpress MYSQL_PASSWORD: wordpress wordpress: depends_on: -…

VIEW QUESTION
Back To Top
Search