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 37312eb commit 2b47f66Copy full SHA for 2b47f66
Dockerfile
@@ -1,5 +1,5 @@
1
FROM openshift/php:5.6
2
3
-ADD app /opt/app-root
+ADD app /opt/app-root/src
4
5
CMD $STI_SCRIPTS_PATH/run
README.md
@@ -0,0 +1,20 @@
+# PHP Docker Build Helloworld Example
+
+This is an example php application, which can be deployed to APPUiO using the following commands
+## How to deploy
6
7
+### CLI / oc Client
8
9
+#### Create New OpenShift Project
10
+```
11
+$ oc new-project example-php-dockerfile-helloworld
12
13
14
+#### Create Application and expose Service
15
16
+$ oc new-app https://github.com/appuio/example-php-docker-helloworld.git --strategy=docker --name=appuio-php-docker-example
17
18
+$ oc expose service appuio-php-docker-example
19
20
0 commit comments