-
-
Save vladimino/4a9dca4b87fd14036be9272397ea6f04 to your computer and use it in GitHub Desktop.
Docker Compose PHP Composer Example
This file contains 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 characters
{ | |
"repositories": [ | |
{ | |
"type": "vcs", | |
"url": "https://github.com/lorenza/hello-world" | |
} | |
], | |
"require": { | |
"lorenza/hello-world": "dev-master" | |
} | |
} |
This file contains 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 characters
app: | |
image: php:7 | |
command: php -S 0.0.0.0:8000 /app/index.php | |
ports: | |
- "8000:8000" | |
volumes: | |
- .:/app | |
composer: | |
restart: 'no' | |
image: composer/composer:php7 | |
command: install | |
volumes: | |
- .:/app |
This file contains 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 characters
<?php | |
require 'vendor/autoload.php'; | |
use HelloWorld\SayHello; | |
echo SayHello::world(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment