Home
Softono

Docker Sqlite Wordpress

Open source Apache-2.0 Dockerfile
95
Stars
23
Forks
1
Issues
1
Watchers
5 months
Last Commit

 About Docker Sqlite Wordpress

WordPress with SQLite, ready to use out of the box.

Platforms

Web Self-hosted Docker

Languages

Dockerfile

Need Help Installing Docker Sqlite Wordpress?

We provide expert installation service for this software. Our team will install, configure, and secure Docker Sqlite Wordpress on your server. plans start at just $30.

Docker Sqlite Wordpress

View on GitHub

Docker SQLite WordPress

WordPress with SQLite, ready to use out of the box.

Articles

Quick Start

You can download GitHub's clean and secure docker image using the following command:

# Docker Hub: use latest
docker pull soulteary/sqlite-wordpress
# Docker Hub: use specify version
docker pull soulteary/sqlite-wordpress:6.9.1
# GHCR: use latest
docker pull ghcr.io/soulteary/sqlite-wordpress:latest
# GHCR: use specify version
docker pull ghcr.io/soulteary/sqlite-wordpress:6.9.1

Use the following command to quickly launch the wordpress with port 8080:

docker run --rm -it -p 8080:80 -v `pwd`/wordpress:/var/www/html soulteary/sqlite-wordpress
# or use GHCR
docker run --rm -it -p 8080:80 -v `pwd`/wordpress:/var/www/html ghcr.io/soulteary/sqlite-wordpress:latest

You can also use docker compose to start wordpress:

version: '3'

services:

  wordpress:
    image: soulteary/sqlite-wordpress:6.9.1
    # or use: ghcr.io/soulteary/sqlite-wordpress:6.9.1
    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.

Use the quick 1-minute initial installation, enjoy.