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 737bae3 commit a93a73eCopy full SHA for a93a73e
default.conf .dev/default.confdefault.conf renamed to .dev/default.conf
entrypoint.sh .dev/entrypoint.shentrypoint.sh renamed to .dev/entrypoint.sh
@@ -1,4 +1,6 @@
1
#!/bin/ash
2
+cd /app
3
+
4
tini -- php-fpm
5
6
until nc -z -v -w30 $DB_HOST 3306
Dockerfile
@@ -10,7 +10,7 @@ RUN apk add --no-cache wget ca-certificates && \
10
11
COPY . ./
12
13
-COPY default.conf /etc/nginx/conf.d/default.conf
+COPY .dev/default.conf /etc/nginx/conf.d/default.conf
14
15
RUN cp .env.example .env
16
RUN composer install --no-dev
@@ -21,5 +21,5 @@ EXPOSE 443
21
RUN chown -R www-data:www-data .
22
RUN chmod -R 777 storage/* bootstrap/cache /var/run/php
23
24
-ENTRYPOINT ["ash", "entrypoint.sh"]
+ENTRYPOINT ["ash", ".dev/entrypoint.sh"]
25
0 commit comments