@@ -6,6 +6,7 @@ WordPress with SQLite, ready to use out of the box.
66
77- Based on [ official image] ( https://hub.docker.com/_/wordpress ) , Easier and more sustainable solution.
88- DockerHub Page: https://hub.docker.com/r/soulteary/sqlite-wordpress
9+ - GHCR Page: https://github.com/soulteary/docker-sqlite-wordpress/pkgs/container/sqlite-wordpress
910
1011## Articles
1112
@@ -17,16 +18,22 @@ WordPress with SQLite, ready to use out of the box.
1718You can download GitHub's clean and secure docker image using the following command:
1819
1920``` bash
20- # use latest
21+ # Docker Hub: use latest
2122docker pull soulteary/sqlite-wordpress
22- # use specify version
23- docker pull soulteary/sqlite-wordpress:6.5.3
23+ # Docker Hub: use specify version
24+ docker pull soulteary/sqlite-wordpress:6.9.1
25+ # GHCR: use latest
26+ docker pull ghcr.io/soulteary/sqlite-wordpress:latest
27+ # GHCR: use specify version
28+ docker pull ghcr.io/soulteary/sqlite-wordpress:6.9.1
2429```
2530
2631Use the following command to quickly launch the wordpress with port ` 8080 ` :
2732
2833``` bash
2934docker run --rm -it -p 8080:80 -v ` pwd` /wordpress:/var/www/html soulteary/sqlite-wordpress
35+ # or use GHCR
36+ docker run --rm -it -p 8080:80 -v ` pwd` /wordpress:/var/www/html ghcr.io/soulteary/sqlite-wordpress:latest
3037```
3138
3239You can also use docker compose to start wordpress:
@@ -37,7 +44,8 @@ version: '3'
3744services :
3845
3946 wordpress :
40- image : soulteary/sqlite-wordpress:6.5.3
47+ image : soulteary/sqlite-wordpress:6.9.1
48+ # or use: ghcr.io/soulteary/sqlite-wordpress:6.9.1
4149 restart : always
4250 ports :
4351 - 8080:80
0 commit comments