Docker Start, Stop, Remove, Containers, Images, Volumes, Version
Clean up dangling resources docker system prune Clean up unused resources docker system prune -a Docker image list # all images docker images -a # dangling resources docker images -f…
Clean up dangling resources docker system prune Clean up unused resources docker system prune -a Docker image list # all images docker images -a # dangling resources docker images -f…
https://www.ai38ml.com/install-jitsi-meet-using-docker-in-ubuntu-18-04/ In the above setup step edit the file to the prosody section in docker-compose.yml ports: - '5222:5222' Also, check 5222 port is open from now and network security. Same docker setup folder…
In your project root folder, create an app folder and setup Django mkdir app && cd app python3.8 -m venv env source env/bin/activate pip install django==3.1.5 django-admin.py startproject projectname python…
Add a docker-compose.yml file to the project root nano docker-compose.yml Add below the line and save the file version: '3.8' services: db: image: postgres:12.0-alpine restart: always volumes: - postgres_data:/var/lib/postgresql/data/ environment:…
Check docker image listing using the below command docker ps Below is the image name listing of Jibri in my case docker-jitsi-meet_jibri_4 docker-jitsi-meet_jibri_3 docker-jitsi-meet_jibri_2 docker-jitsi-meet_jibri_1 You can go to Jibri…
Edit your docker .env file and edit the line like below to that file. # Custom Prosody modules for MUC component (comma separated) XMPP_MUC_MODULES=info,alert,muc_allowners Save the file and enter the…
Install Jitsi Meet using the below link https://www.ai38ml.com/install-jitsi-meet-using-docker-in-ubuntu-18-04/ Go to the docker-jitsi-meet directory and run the below command docker-compose exec web /bin/bash apt install wget wget https://url-of-jitsi-meet-web-deb-file/jitsi-meet-web_all.deb dpkg -i jitsi-meet-web_all.deb…
Login to the server using ssh terminal or putty First, install docker using the below command sudo apt-get update sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg…