...
create a new folder: database_mysql
create a new text file inside the folder called: docker-compose.yml
add this code snipped into the file …
Code Block | ||
---|---|---|
| ||
version: '3' services: db: image: mysql:5.78 container_name: db environment: MYSQL_DATABASE: daselement MYSQL_ROOT_PASSWORD: root MYSQL_ROOT_PASSWORD: password MYSQL_USER: dbuser MYSQL_PASSWORD: dbuser ports: - 3306:3306 volumes: - dbdatamysql-data:/var/lib/mysql phpmyadmin: image: phpmyadmin/phpmyadmin container_name: pma links: - db environment: PMA_HOST: db PMA_PORT: 3306 PMA_ARBITRARY: 1 restart: always ports: - 8081:80 volumes: dbdatamysql-data:. |
Run this command to start the database:
...