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
Commit 86e181e7 authored by Nicolas's avatar Nicolas
Browse files

feat: switch nginx by httpd

parent 71cde912
No related branches found
No related tags found
No related merge requests found
...@@ -3,10 +3,21 @@ ...@@ -3,10 +3,21 @@
version: "3.9" version: "3.9"
services: services:
nginx: # nginx:
# build:
# context: ./.docker
# dockerfile: nginx.Dockerfile
# ports:
# - "8000:8000"
# depends_on:
# - phpfpm
# volumes:
# - ./:/var/www/html
httpd:
build: build:
context: ./.docker context: ./.docker
dockerfile: nginx.Dockerfile dockerfile: httpd.Dockerfile
ports: ports:
- "8000:8000" - "8000:8000"
depends_on: depends_on:
...@@ -14,17 +25,6 @@ services: ...@@ -14,17 +25,6 @@ services:
volumes: volumes:
- ./:/var/www/html - ./:/var/www/html
# httpd:
# build:
# context: ./.docker
# dockerfile: httpd.Dockerfile
# ports:
# - "8000:8000"
# depends_on:
# - phpfpm
# volumes:
# - ./:/var/www/html
phpfpm: phpfpm:
build: build:
context: ./.docker context: ./.docker
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment