You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 24, 2022. It is now read-only.
To configure extra [php.ini](https://www.php.net/manual/en/ini.php): settings,
154
+
create application specific `php.ini` and copy the file into docker image:
155
+
156
+
157
+
```ini
158
+
# php.ini
159
+
memory_limit = 512M
160
+
```
161
+
162
+
```Dockerfile
163
+
FROM phpearth/php:7.3-nginx
164
+
165
+
COPY php.ini $PHP_INI_DIR/conf.d/my-app.ini
166
+
```
167
+
151
168
#### Missing extension?
152
169
153
170
In case you'd need an additional extension in the PHP.earth repository, [open an issue](https://github.com/phpearth/docker-php/issues).
0 commit comments