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 34a04f7 commit 2590ab1Copy full SHA for 2590ab1
README.md
@@ -18,7 +18,7 @@ A highly opinionated docker image which aims to be perfectly suited to run our L
18
19
Create a `Dockerfile` with the following contents (and adjust version tag):
20
21
-```
+```dockerfile
22
FROM sourceboat/docker-laravel:x.x.x
23
24
# install yarn dependencies
@@ -40,14 +40,15 @@ RUN yarn production
40
41
Create a `docker-compose.yml` with the following contents:
42
43
+```yml
44
version: '3.7'
45
services:
46
app:
47
build: .
48
restart: unless-stopped
49
environment:
50
- PHP_OPCACHE_VALIDATE_TIMESTAMPS=1
51
+ - PHP_MEMORY_LIMIT=1G #Set this to your desired value. Default: 512M
52
volumes:
53
- ./:/opt/app:cached
54
ports:
0 commit comments