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 4c2fdf1 commit 41f29ebCopy full SHA for 41f29eb
1 file changed
README.md
@@ -0,0 +1,27 @@
1
+# codeigniter4-docker
2
+Basic example to create your container (tested on Ubuntu 18.04 - Docker version 19.03.5, build 633a0ea838):
3
+
4
+**NOTE: This package is under early development and is not ready for prime-time.**
5
6
+create this structure:
7
+```
8
+codeigniter/
9
+ - conf/apache.conf
10
+ - Dockerfile
11
+ - startScript.sh
12
13
14
+Go to the codeigniter folder:
15
16
+cd codeigniter
17
18
19
+build the image:<br>
20
21
+docker build . -t codeginiter:4.0.2
22
23
24
+start the container:
25
26
+docker container run --publish 80:80 --name ci4 -v /app/test/localfolder:/var/www/html codeginiter:4.0.2
27
0 commit comments