Skip to content

Commit

Permalink
Merge pull request #5 from idrislab/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
luispittagros authored Dec 6, 2016
2 parents 96befb1 + 6910141 commit aa36e13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DockerContainers.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class DockerContainers extends Command
'repo' => 'mysql',
'tag' => 'latest',
'command' =>
'-d -v /mysql:/var/lib/mysql \\'.
'-d --rm -v /mysql:/var/lib/mysql \\'.
'-e MYSQL_USER=ENV[DB_USERNAME] \\'.
'-e MYSQL_PASSWORD=ENV[DB_PASSWORD] \\'.
'-e MYSQL_DATABASE=ENV[DB_DATABASE] \\'.
Expand All @@ -47,13 +47,13 @@ class DockerContainers extends Command
'repo' => 'redis',
'tag' => 'alpine',
'command' =>
'-d -p ENV[REDIS_PORT]:ENV[REDIS_PORT] \\'.
'-d --rm -p ENV[REDIS_PORT]:ENV[REDIS_PORT] \\'.
'redis redis-server --appendonly yes --requirepass ENV[REDIS_PASSWORD]',
],
'Beanstalkd' => [
'repo' => 'schickling/beanstalkd',
'tag' => 'latest',
'command' => '-d -p 11300:11300 schickling/beanstalkd',
'command' => '-d --rm -p 11300:11300 schickling/beanstalkd',
],
'Memcached' => [
'repo' => 'memcached',
Expand Down

0 comments on commit aa36e13

Please sign in to comment.