I have a couple of custom docker images i.e
cloudbluedigital/mysql:v-0.1
cloudbluedigital/redis:v-0.1
I am now using those images to build laravel image, so in my docker file I have:
FROM cloudbluedigital/ubuntu:v-0.2
FROM cloudbluedigital/php:v-0.2
FROM cloudbluedigital/node:v-0.1
FROM cloudbluedigital/mysql:v-0.1
FROM cloudbluedigital/redis:v-0.1
MAINTAINER cloudbluedigital version: 0.1
All good and builded, however when I run my new laravel image, I can start redis-server from redis image however mysql command is not found, I have checked mysql image and it is installed there but on my new laravel image it is not installed. Anyone knows why this is happening? Is that a correct setup and is worth ignoring some folders with additional configuration? (I am only using Dockerfile, complete newbie)