Skip to content

Commit 2590ab1

Browse files
author
Kevin Buchholz
committed
update readme
1 parent 34a04f7 commit 2590ab1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A highly opinionated docker image which aims to be perfectly suited to run our L
1818

1919
Create a `Dockerfile` with the following contents (and adjust version tag):
2020

21-
```
21+
```dockerfile
2222
FROM sourceboat/docker-laravel:x.x.x
2323

2424
# install yarn dependencies
@@ -40,14 +40,15 @@ RUN yarn production
4040

4141
Create a `docker-compose.yml` with the following contents:
4242

43-
```
43+
```yml
4444
version: '3.7'
4545
services:
4646
app:
4747
build: .
4848
restart: unless-stopped
4949
environment:
5050
- PHP_OPCACHE_VALIDATE_TIMESTAMPS=1
51+
- PHP_MEMORY_LIMIT=1G #Set this to your desired value. Default: 512M
5152
volumes:
5253
- ./:/opt/app:cached
5354
ports:

0 commit comments

Comments
 (0)