Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soulteary/docker-sqlite-wordpress
WordPress with SQLite, ready to use out of the box.
https://github.com/soulteary/docker-sqlite-wordpress
wordpress wordpress-plugin
Last synced: 3 days ago
JSON representation
WordPress with SQLite, ready to use out of the box.
- Host: GitHub
- URL: https://github.com/soulteary/docker-sqlite-wordpress
- Owner: soulteary
- License: apache-2.0
- Created: 2024-04-16T15:46:12.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-02T18:21:38.000Z (5 months ago)
- Last Synced: 2024-10-23T19:28:15.096Z (11 days ago)
- Topics: wordpress, wordpress-plugin
- Language: Dockerfile
- Homepage: https://soulteary.com/2024/04/17/say-goodbye-to-mysql-docker-sqlite-wordpress.html
- Size: 163 KB
- Stars: 49
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker SQLite WordPress
![](.github/about.jpg)
WordPress with SQLite, ready to use out of the box.
- Based on [official image](https://hub.docker.com/_/wordpress), Easier and more sustainable solution.
- DockerHub Page: https://hub.docker.com/r/soulteary/sqlite-wordpress## Articles
- [WordPress SQLite Docker image packaging details](https://soulteary.com/2024/04/21/wordpress-sqlite-docker-image-packaging-details.html)
- [WordPress farewell to MySQL: Docker SQLite WordPress](https://soulteary.com/2024/04/17/say-goodbye-to-mysql-docker-sqlite-wordpress.html)## Quick Start
You can download GitHub's clean and secure docker image using the following command:
```bash
# use latest
docker pull soulteary/sqlite-wordpress
# use specify version
docker pull soulteary/sqlite-wordpress:6.5.3
```Use the following command to quickly launch the wordpress with port `8080`:
```bash
docker run --rm -it -p 8080:80 -v `pwd`/wordpress:/var/www/html soulteary/sqlite-wordpress
```You can also use docker compose to start wordpress:
```yaml
version: '3'services:
wordpress:
image: soulteary/sqlite-wordpress:6.5.3
restart: always
ports:
- 8080:80
volumes:
- ./wordpress:/var/www/html
```Save the file as `docker-compose.yml` and then execute `docker compose up`, then use browser access to `localhost:8080`.
![](.github/ready-to-use.jpg)
Use the quick 1-minute initial installation, enjoy.