July 2018
Intermediate to advanced
420 pages
8h 46m
English
Now, we need to prepare our baseline code, which is a process that's very similar to what we performed in the previous chapter. Let's follow these steps:
version: "3.1" services: mysql: image: mysql:5.7 container_name: chapter-10-mysql working_dir: /application volumes: - .:/application - ./storage-db:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=123456 - MYSQL_DATABASE=chapter-10 - MYSQL_USER=chapter-10 - ...
Read now
Unlock full access