๐Ÿš€ Step-by-Step Guide to Install MediaCMS on WSL

Posted by

Limited Time Offer!

For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!

Enroll Now

Sure! Let’s set up MediaCMS from scratch on your system at /opt/wizbrand/mediacms-4.4.1. This guide will ensure you remove everything and install it cleanly.

This guide covers: โœ… Removing existing Docker containers
โœ… Reinstalling and configuring MediaCMS
โœ… Setting up PostgreSQL, Redis, and Python virtual environment
โœ… Running and accessing MediaCMS


1๏ธโƒฃ Step 1: Remove All Existing Containers, Images, and Volumes

Since you want a fresh setup, let’s remove everything.

๐Ÿ—‘๏ธ Remove Old Containers and Images

docker-compose down -v --rmi all --remove-orphans
docker system prune -a --volumes -f

This will:

  • Stop and remove all containers.
  • Remove all Docker images.
  • Clear all volumes.

2๏ธโƒฃ Step 2: Install Required Dependencies

Before installing MediaCMS, install the required software:

๐Ÿ–ฅ๏ธ Install Docker & Docker Compose

Ensure Docker is installed:

sudo apt update
sudo apt install -y docker.io docker-compose

Start and enable Docker:

sudo systemctl enable --now docker

Verify installation:

docker --version
docker-compose --version

๐Ÿ Install Python & Virtualenv

MediaCMS requires Python, so install it:

sudo apt install -y python3 python3-venv python3-pip

Verify Python installation:

python3 --version

3๏ธโƒฃ Step 3: Clone MediaCMS Repository (If Needed)

If you haven’t cloned MediaCMS yet, do this:

cd /opt/wizbrand
git clone https://github.com/mediacms-io/mediacms.git mediacms-4.4.1
cd mediacms-4.4.1

If you already have the project, just navigate to it:

cd /opt/wizbrand/mediacms-4.4.1

4๏ธโƒฃ Step 4: Configure Environment Variables

Before running Docker, ensure the .env file has correct settings.

๐Ÿ“Œ Create/Edit the .env File

nano .env

Add the following:

DB_HOST=db
DB_NAME=mediacms
DB_USER=mediacms_user
DB_PASSWORD=yourpassword

REDIS_HOST=redis
REDIS_PORT=6379

Save and exit (CTRL + X, then Y + Enter).


5๏ธโƒฃ Step 5: Build & Run MediaCMS Containers

๐Ÿ”จ Build and Start MediaCMS

Run:

docker-compose up --build -d

This will:

  • Pull the required Docker images.
  • Build the MediaCMS container.
  • Start PostgreSQL, Redis, and Web services.

6๏ธโƒฃ Step 6: Verify Running Containers

Check if all services are running:

docker ps

Expected output:

CONTAINER ID   IMAGE                      COMMAND                  STATUS          PORTS
abcd1234       mediacms/mediacms:latest   "./deploy/docker/entโ€ฆ"   Up X minutes    8000/tcp
efgh5678       redis:alpine               "docker-entrypoint.sโ€ฆ"   Up X minutes    6379/tcp
ijkl9101       postgres:17.2-alpine       "docker-entrypoint.sโ€ฆ"   Up X minutes    5432/tcp

If any container is Restarting or Exited, check logs:

docker logs <container_id>

7๏ธโƒฃ Step 7: Run Database Migrations Manually (If Needed)

If MediaCMS is stuck, you may need to run migrations.

๐Ÿ” Enter the Web Container

docker exec -it mediacms-441_web_1 bash

๐Ÿ Set Up Python Virtual Environment

python3 -m venv /home/mediacms.io/mediacms/venv
source /home/mediacms.io/mediacms/venv/bin/activate
pip install --upgrade pip
pip install -r /home/mediacms.io/mediacms/requirements.txt

๐Ÿ“Œ Apply Migrations

python manage.py migrate
python manage.py collectstatic --noinput
exit

Restart the container:

docker-compose restart

8๏ธโƒฃ Step 8: Access MediaCMS

If everything is working, open your browser and go to:

http://localhost:8000

or

http://your-server-ip:8000

๐Ÿ”ฅ Troubleshooting

If you face any issues, try the following:

๐Ÿ“Œ 1. Check Container Logs

docker-compose logs

For a specific container:

docker logs mediacms-441_web_1

๐Ÿ“Œ 2. Restart Everything

docker-compose down
docker-compose up -d --build

๐Ÿ“Œ 3. Verify PostgreSQL is Running

docker exec -it mediacms-441_db_1 psql -U mediacms_user -d mediacms -c "\dt"

โœ… Final Checklist

โœ… Docker is installed and running
โœ… MediaCMS .env file is set up
โœ… Containers are running (docker ps)
โœ… Database migrations are applied
โœ… MediaCMS is accessible at http://localhost:8000


๐ŸŽ‰ Youโ€™ve successfully installed MediaCMS on WSL! Let me know if you face any issues. ๐Ÿš€

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x