Skip to content

Commit c1a8ab5

Browse files
committed
Upgrade to Codeigniter 4.2.3
1 parent 019a2aa commit c1a8ab5

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1.7-apache
1+
FROM php:8.1.9-apache
22

33
#====================================================================#
44
# SET VERSION LABEL #

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ Clone thi repository and run:
2222

2323
start the container with php 7.4:
2424
```
25-
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.1:7.4.30-apache
25+
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.3:7.4.30-apache
2626
```
2727

2828
start the container with php 8.0:
2929
```
30-
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.1:8.0.20-apache
30+
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.3:8.0.20-apache
3131
```
3232

3333
start the container with php 8.1:
3434
```
35-
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.1:8.1.7-apache
35+
docker container run -it --publish 80:80 --name ci4 -v /localfolder:/var/www/html codeigniter4.2.3:8.1.7-apache
3636
```
3737

3838
## Installation

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
docker build --pull --rm -f "Dockerfile" -t codeigniter4:v4.2.1-php8.1.7-apache "."
3+
docker build --pull --rm -f "Dockerfile" -t codeigniter4:v4.2.3-php8.1.9-apache "."
44

5-
docker build --pull --rm -f "Dockerfile-php8.0" -t codeigniter4:v4.2.1-php8.0.20-apache "."
5+
docker build --pull --rm -f "Dockerfile-php8.0" -t codeigniter4:v4.2.3-php8.0.20-apache "."
66

7-
docker build --pull --rm -f "Dockerfile-php7.4" -t codeigniter4:v4.2.1-php7.4.30-apache "."
7+
docker build --pull --rm -f "Dockerfile-php7.4" -t codeigniter4:v4.2.3-php7.4.30-apache "."

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ version: "3"
33
services:
44
#--------------------------------------------------------------------------#
55
#--------------------------------------------------------------------------#
6-
# C O D E I G N I T E R v4.2.1 #
6+
# C O D E I G N I T E R v4.2.3 #
77
#--------------------------------------------------------------------------#
88
#--------------------------------------------------------------------------#
99
codeigniter4:
1010
image: atsanna/codeigniter4:latest
11-
# image: atsanna/codeigniter4:v4.2.1-php8.1-apache
12-
# image: atsanna/codeigniter4:v4.2.1-php8.1.7-apache
13-
# image: atsanna/codeigniter4:v4.2.1-php8.0-apache
14-
# image: atsanna/codeigniter4:v4.2.1-php8.0.20-apache
15-
# image: atsanna/codeigniter4:v4.2.1-php7.4-apache
16-
# image: atsanna/codeigniter4:v4.2.1-php7.4.30-apache
11+
# image: atsanna/codeigniter4:v4.2.3-php8.1-apache
12+
# image: atsanna/codeigniter4:v4.2.3-php8.1.9-apache
13+
# image: atsanna/codeigniter4:v4.2.3-php8.0-apache
14+
# image: atsanna/codeigniter4:v4.2.3-php8.0.20-apache
15+
# image: atsanna/codeigniter4:v4.2.3-php7.4-apache
16+
# image: atsanna/codeigniter4:v4.2.3-php7.4.30-apache
1717
container_name: 'codeigniter4'
1818
environment:
1919
- REGEN_ENV_FILE=1

startScript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export PATH=/usr/local/bin:$PATH
33
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
44

55
app_name="codeigniter4"
6-
new_version="4.2.1"
6+
new_version="4.2.3"
77

88
set -eu
99

0 commit comments

Comments
 (0)