Let’s say you just want to have Joomla with its Mysql and also redis infrastructure ready. And don’t want to bother setting it up manually for each services. Just make a docker-compose.yaml with the following content and then start it up. version: '3.1' services: web: image: joomla restart: always links: – db:mysql – redis:cache ports: […]

continue reading.....