Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
docker-compose.yml 344 B
Newer Older
  • Learn to ignore specific revisions
  • Nicolas's avatar
    Nicolas committed
    version: "3.9"
    
    services:
      httpd:
        build:
          context: .docker
          dockerfile: httpd.Dockerfile
        ports:
          - 8000:8000
        depends_on:
          - phpfpm
        volumes:
          - .:/var/www/html
    
      phpfpm:
        build:
          context: .docker
          dockerfile: phpfpm.Dockerfile
        expose:
          - 9000
        volumes:
          - .:/var/www/html