https://github.com/fengluo/wordpress-fpm-sqlite
Wordpress on Alpine with php-fpm and SQLite
https://github.com/fengluo/wordpress-fpm-sqlite
docker wordpress
Last synced: about 1 month ago
JSON representation
Wordpress on Alpine with php-fpm and SQLite
- Host: GitHub
- URL: https://github.com/fengluo/wordpress-fpm-sqlite
- Owner: fengluo
- License: mit
- Created: 2017-12-11T07:02:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-09-19T15:02:08.000Z (almost 5 years ago)
- Last Synced: 2025-03-15T22:16:22.423Z (over 1 year ago)
- Topics: docker, wordpress
- Language: Awk
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wordpress-sqlite-docker
Lightweight Wordpress on Alpine with php-fpm ondemand and SQLite instead of MySQL.
## Install
```
docker pull fengluo/wordpress-fpm-sqlite
```
## Example
```
docker run -d -p 9000:9000 --name wp fengluo/wordpress-fpm-sqlite
```
or
```
docker run -d -p 9000:9000 -e WORDPRESS_DB_FILE='db.db' -e WORDPRESS_DB_DIR='/var/www/' --name wp fengluo/wordpress-fpm-sqlite
```
## Tool
`mysql2sqlite` is used for converting mysql to sqlite.
```
./mysql2sqlite wordpress.sql | sqlite db.db
```