Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #dockerfile
  2.  
  3. FROM php:7.1.11-apache
  4. RUN apt-get update && apt-get install -y \
  5. mc
  6.  
  7. COPY . /var/www/html
  8.  
  9. #docker-compose.yml
  10.  
  11. version: '3'
  12.  
  13. services:
  14. front:
  15. build: ./front
  16. volumes:
  17. - ./front:/var/www/html
  18. ports:
  19. - 5000:80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement