Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
267 B

  1. version: '3'
  2. # Php-fpm configuration
  3. php:
  4. build: ./php_docker/
  5. volumes:
  6. - .:/app/public
  7. links:
  8. - clubdb
  9. web:
  10. build: .
  11. ports:
  12. - "8080:80"
  13. volumes:
  14. - .:/app/public
  15. links:
  16. - php
  17. depends_on:
  18. - php