Running the code in a Docker Container

docker-compose.yaml version: ‘3’ services: mySQL: image: mysql:5.7 environment: – MYSQL_ROOT_PASSWORD=verysecret – lower_case_table_names=1 joyphp: build: ./joyphp volumes: – ./joyphp/src:/var/www/html ports: – 80:80 environment: XDEBUG_CONFIG: remote_host=host.docker.internal remote_port=9000 remote_enable=1 links: – mySQL depends_on: – mySQL phpmyadmin: image: phpmyadmin/phpmyadmin container_name: phpmyadmin environment: – MYSQL_ROOT_PASSWORD=yourpassword – PMA_HOST=mySQL ports: – 8080:80

Sorry for the outage

Hi everyone, As you might have noticed, this site got hacked.  Somebody guessed my admin password (which stupidly was the title of the book) and filled it with malware.  My ISP  noticed and took the site down, and Google dropped it from search results. A couple of important lessons here.  First, make your passwords hard […]