diff --git a/php/docker-compose.yml b/docker-compose.yml similarity index 71% rename from php/docker-compose.yml rename to docker-compose.yml index b5ff245..1524bd9 100644 --- a/php/docker-compose.yml +++ b/docker-compose.yml @@ -4,16 +4,16 @@ services: elixforms-www: build: context: . - dockerfile: ../.docker/php/Dockerfile + dockerfile: .docker/php/Dockerfile container_name: elixforms-www - working_dir: /app/php + working_dir: /app/php extra_hosts: - "host.docker.internal:host-gateway" ports: - "8080:8000" volumes: - - ..:/app - - ../.docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini + - .:/app + - ./.docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini #environment: # XDEBUG_MODE: debug # XDEBUG_CONFIG: client_host=host.docker.internal client_port=9003 start_with_request=yes