Skip to content

Instantly share code, notes, and snippets.

@mborodov
Created October 1, 2018 11:58
Show Gist options
  • Save mborodov/a3994f010295e71207638f415a9d1e87 to your computer and use it in GitHub Desktop.
Save mborodov/a3994f010295e71207638f415a9d1e87 to your computer and use it in GitHub Desktop.
PHP server on php image docker-compose
version: '3.5'
services:
server:
image: php:7.2
command: php -S 0.0.0.0:8000 /app/index.php
ports:
- "8000:8000"
volumes:
- .:/app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment