Skip to content

Commit eee98a7

Browse files
committed
modified: .env
modified: .travis/verify.sh modified: bin/container/appinstallctl.sh modified: docker-compose.yml
1 parent a3b2c2d commit eee98a7

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

.env

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
TimeZone=America/New_York
2-
LSWS_VERSION=6.3.2
2+
LSWS_VERSION=6.3.4
33
PHP_VERSION=lsphp83
4+
PHPMYADMIN_VERSION=5.2.3
5+
MYSQL_ROOT_PASSWORD=your_root_password
46
MYSQL_DATABASE=magento
5-
MYSQL_ROOT_PASSWORD=password
67
MYSQL_USER=magento
7-
MYSQL_PASSWORD=password
8+
MYSQL_PASSWORD=your_password
89
DOMAIN=localhost

.travis/verify.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,7 @@ verify_phpadmin(){
4242
else
4343
echo '[X] http://localhost:8080/'
4444
exit 1
45-
fi
46-
curl -sIk https://localhost:8443/ | grep -i phpMyAdmin
47-
if [ ${?} = 0 ]; then
48-
echo '[O] http://localhost:8443/'
49-
else
50-
echo '[X] http://localhost:8443/'
51-
exit 1
52-
fi
45+
fi
5346
}
5447

5548
main(){

bin/container/appinstallctl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PLUGINLIST="litespeed-cache.zip"
1313
THEME='twentytwenty'
1414
LSDIR='/usr/local/lsws'
1515
MA_COMPOSER='/usr/local/bin/composer'
16-
MA_VER='2.4.7'
16+
MA_VER='2.4.8'
1717
1818
APP_ACCT=''
1919
APP_PASS=''

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,9 @@ services:
3434
networks:
3535
- default
3636
phpmyadmin:
37-
image: bitnami/phpmyadmin:5.2.2
37+
image: phpmyadmin/phpmyadmin:${PHPMYADMIN_VERSION}
3838
ports:
39-
- 8080:8080
40-
- 8443:8443
39+
- 8080:80
4140
environment:
4241
DATABASE_HOST: mysql
4342
restart: always

0 commit comments

Comments
 (0)