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-x86-64:latest
# Starting the container in unprivileged mode
sudo docker run --cap-add=NET_ADMIN --net=host --name mikopbx --hostname mikopbx \
-v data_volume:/cf \
-v data_volume:/storage \
-e SSH_PORT=23 \
-it -d --restart always ghcr.io/mikopbx/mikopbx-x86-64:latestUpdating using Docker compose
Notes
Last updated
Was this helpful?

