We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c694e commit ace51e3Copy full SHA for ace51e3
README.md
@@ -1,5 +1,7 @@
1
# Docker image for php 5.2 legacy projects
2
3
+[](https://hub.docker.com/r/deminy/php-5.2/)
4
+
5
This docker image is intended to work as a replacement for old legacy projects, running on old server.
6
7
Features:
@@ -12,3 +14,17 @@ Features:
12
14
* Enable PHP on the default site.
13
15
* Allow [short open tag](http://php.net/manual/en/ini.core.php#ini.short-open-tag).
16
* Various updates and fixes.
17
18
+# Sample Docker compose file
19
20
+```yaml
21
+version: '3'
22
23
+services:
24
+ app:
25
+ image: deminy/php-5.2
26
+ ports:
27
+ - "80:80"
28
+ volumes:
29
+ - ~/projects/example.com:/project
30
+```
0 commit comments