Back to Apps
WordPress - No Database

Deploy WordPress - No Database on Your Own Server

This will create a WordPress only. You will need to create and configure the database information manually. Intended for advanced users.

๐Ÿ—„๏ธ Databases๐Ÿ“ CMS

Want to deploy WordPress - No Database on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is WordPress - No Database?

WordPress is an online, open source website creation tool written in PHP. But in non-geek speak, itโ€™s probably the easiest and most powerful blogging and website content management system (or CMS) in existence today. Enter your WordPress Configuration parameters and click on next. A WordPress container will be created for you. The process will take about a minute for the process to finish. Note: This app is intended for advanced users who'd like to have a central DB in a single container for multiple WP's. You should start by configuring your DB first and then comeback with all the DB Information.

Self-Host WordPress - No Database

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

General
3

Deploy

Copy the configuration and run it on your server.

services:
  wordpress_only-wordpress:
    image: wordpress:5.4.0
    environment:
      WORDPRESS_DB_HOST: <service_name>:3306
      WORDPRESS_DB_NAME: wordpress
      WORDPRESS_DB_PASSWORD: c56c4e0bc523ae6d
      WORDPRESS_DB_USER: wordpressuser
      WORDPRESS_TABLE_PREFIX: WP_
    volumes:
      - wordpress_only-wp-data:/var/www/html
volumes:
  wordpress_only-wp-data: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:80

Why Self-Host WordPress - No Database?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Docker Image

wordpress:${wp_version}

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"