I build 2 docker container with docker-compose. I use Docker on Mac, no boot2docker.
version: \'2\'
services:
drupal-web:
image: drupal:
version: "3.8"
services:
db-1:
container_name: db-1
image: mysql:5.7
restart: always
environment:
MYSQL_DATABASE: 'db'
# So you don't have to use root, but you can if you like
MYSQL_USER: 'user'
# You can use whatever password you like
MYSQL_PASSWORD: 'password'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password'
ports:
# : < MySQL Port running inside container>
- '3306:3306'
expose:
# Opens port 3306 on the container
- '3306'
# Where our data will be persisted
volumes:
- my-db:/var/lib/mysql
volumes:
my-db:
This works just fine today. However it didn't work when I used image: mysql:latest