Skip to content

Instantly share code, notes, and snippets.

@kodetop
Last active August 11, 2019 00:32
Show Gist options
  • Save kodetop/f2991c14d3fff4df31de88dec5261f0e to your computer and use it in GitHub Desktop.
Save kodetop/f2991c14d3fff4df31de88dec5261f0e to your computer and use it in GitHub Desktop.
Ejemplo de PHP con docker-compose.yml
version: '3'
services:
web:
image: php:7.3-apache
container-name: docker-php
ports:
- "80:80"
volumes:
- ./www:/var/www/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment