Create docker image with php and mysql

1.5k Views Asked by At

I have php5.6-apache image built on ubuntu and mysql:5.6 image. I want to create docker image from above two images so that I can use newly built image in gitlab ci. How can I do that? I am fairly new to docker and gitlab.

I tried following in gitlab, but didn't work.

image: viraths/php5.6-apache:latest

stages:
  - build
  - test

deps build:
  stage: build
  variables:
    MYSQL_DATABASE: test
    MYSQL_ROOT_PASSWORD: password
    DNSDOCK_ALIAS: localhost
  services:
    - mysql:5.6
  script:
    - export APPLICATION_ENV=test
    - if [ -f /.dockerinit ]; then export COMPOSER_HOME=/cache/composer; fi;
    - php -v
    - composer install --no-progress --no-interaction --prefer-dist
  artifacts:
    paths:
      - vendor/
    expire_in: 1 week
  tags:
    - docker

I got following error when running composer install in gitlab ci.

[Doctrine\DBAL\Exception\ConnectionException]                                
An exception occured in driver: SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
1

There are 1 best solutions below

3
On BEST ANSWER

You didn't configure the database properly. With your configuration mysql is available on host mysql and port 3306. Instead your application is trying a local connection thru a unix socket. Configure the connection and all should work.