diff --git a/.dockerignore b/.dockerignore index 191381ee..d436eaba 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ -.git \ No newline at end of file +.git + diff --git a/Dockerfile b/Dockerfile index f9d6c3e6..32c02e7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,4 +23,5 @@ RUN composer install --ignore-platform-reqs # Give execute permission to startup script RUN chmod +x /app/docker-startup.sh -ENTRYPOINT [ "/app/docker-startup.sh" ] \ No newline at end of file +ENTRYPOINT [ "/app/docker-startup.sh" ] + diff --git a/docker-compose.yaml b/docker-compose.yaml index 706ba663..dc195e4f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -29,3 +29,4 @@ services: volumes: dbdata: + diff --git a/docker-startup.sh b/docker-startup.sh index 4db9c304..23b366a9 100644 --- a/docker-startup.sh +++ b/docker-startup.sh @@ -3,4 +3,5 @@ php artisan key:generate php artisan migrate --seed php artisan storage:link -php artisan serve --host 0.0.0.0 \ No newline at end of file +php artisan serve --host 0.0.0.0 +