File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1- # PHP+ OCI8 Docker image
1+ # PHP with OCI8 extension docker image
22
33This is my custom docker image based on official php-fpm image with installed oci8 and few other extensions.
44
5- ## Available extensions
5+ ## Tags
6+ - [ ` latest ` , ` 1.2 ` , ` 1.1 ` ] ( https://github.com/silencesys/docker-php-oci8/blob/master/Dockerfile )
7+
8+ ## Extensions installed within this image
9+ This image brings few more extensions than the default PHP-fpm one.
610- zip
711- gdo
812- opcache
@@ -16,8 +20,17 @@ This is my custom docker image based on official php-fpm image with installed oc
1620You can freely use this image as a base for your own docker images. Simply put to your Dockerfile following line:
1721``` Docker
1822FROM silencesys/php-oci8:latest
23+
24+ COPY . /usr/src/myapp
25+ WORKDIR /usr/src/myapp
26+
27+ CMD ["php-fpm"]
28+ EXPOSE 9000
1929```
2030
31+ <br >
32+
33+ ### Custom configuration
2134To modify php configuration.
2235``` Docker
2336COPY ./config/your_config.ini /usr/local/etc/php/conf.d/custom.ini
You can’t perform that action at this time.
0 commit comments