We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b548c0 commit 5d13791Copy full SHA for 5d13791
docker-compose.yaml
@@ -42,9 +42,6 @@ services:
42
- MDB_HOST=mongo
43
- MDB_PORT=27017
44
45
- entrypoint:
46
- - ./entrypoint.sh
47
-
48
networks:
49
laravel-log-to-db-testing:
50
driver: bridge
docker/php8/Dockerfile
@@ -29,4 +29,4 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
29
COPY entrypoint.sh /entrypoint.sh
30
RUN chmod +x /entrypoint.sh
31
32
-ENTRYPOINT ["entrypoint.sh"]
+ENTRYPOINT ["/entrypoint.sh"]
docker/php8/entrypoint.sh
@@ -1,4 +1,4 @@
1
#!/bin/bash
2
export DEBIAN_FRONTEND=noninteractive
3
php -v
4
-cd /var/testing && chmod +x ./runTests && ./runTests.sh
+cd /var/testing && chmod +x ./runTests.sh && ./runTests.sh
0 commit comments