Last active
July 13, 2017 07:24
-
-
Save k2levin/5a6d49e08bf8f12ce6e79d1ae4693d54 to your computer and use it in GitHub Desktop.
Revisions
-
k2levin revised this gist
Jul 13, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ services: php: image: k2levin/php-laravel:latest volumes: - "$PWD/:/var/www/app/laravel/" depends_on: - db - redis -
k2levin created this gist
Jun 20, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ version: "3" services: db: image: mysql:5.7 environment: - MYSQL_ALLOW_EMPTY_PASSWORD=yes - MYSQL_DATABASE=laravel networks: - db-network redis: image: redis:alpine networks: - redis-network php: image: k2levin/php-laravel:latest volumes: - "./laravel/:/var/www/app/laravel/" depends_on: - db - redis networks: - redis-network - db-network networks: db-network: redis-network: