Updating the docker
Upgrade option for MikoPBX in Docker container
Updating the docker
# Stop the current container
sudo docker stop mikopbx
# Remove the current container
sudo docker rm mikopbx# Downloading the latest container image version
sudo docker pull ghcr.io/mikopbx/mikopbx:latest
# Starting the container in unprivileged mode
sudo docker run --net=host --name mikopbx --hostname mikopbx \
-v /var/spool/mikopbx/cf:/cf \
-v /var/spool/mikopbx/storage:/storage \
-e SSH_PORT=23 \
-e ID_WWW_USER="$(id -u www-user)" \
-e ID_WWW_GROUP="$(id -g www-user)" \
-it -d --restart always ghcr.io/mikopbx/mikopbx:latestUpdating using Docker compose
Notes
Last updated
Was this helpful?

