I have created a basic installation of MyBB for educational purposes. The goal is to learn more about Docker and MyBB is a good fit as it requires several services to run.
I am using the docker-compose.yml shown at the bottom of MyBB's Docker project page: https://hub.docker.com/r/mybb/mybb/
My forum was installed on version 1.8.22. and I am trying to understand how to upgrade to 1.8.23 via docker-compose. I have run:
These commands pulled the latest version of MyBB, Nginx, and PostgreSQL. The up command then restarted the containers with the latest images.
When navigating to the admin panel I still see the warning about upgrading from 1.8.22. How can I trigger the upgrade successfully when using docker-compose to manage the containers?
I am using the docker-compose.yml shown at the bottom of MyBB's Docker project page: https://hub.docker.com/r/mybb/mybb/
My forum was installed on version 1.8.22. and I am trying to understand how to upgrade to 1.8.23 via docker-compose. I have run:
docker-compose pull
docker-compose up -d
These commands pulled the latest version of MyBB, Nginx, and PostgreSQL. The up command then restarted the containers with the latest images.
When navigating to the admin panel I still see the warning about upgrading from 1.8.22. How can I trigger the upgrade successfully when using docker-compose to manage the containers?