/path/to/your-key-pair.pem
with the path to your key pair file and <your_vm_public_ip>
with your VM’s public IP address.
sudo apt update && sudo apt upgrade -y
to ensure your system is up-to-date.
/usr/local/bin/docker-compose
). Make the file executable: sudo chmod +x /usr/local/bin/docker-compose
.
sudo systemctl start docker
and sudo systemctl enable docker
to start Docker and configure it to start automatically on boot.
docker-compose.yml
file and Configure Environment:
.env
file:.env
, This file holds environment variables for various services. Replace the placeholders with your own values, including:
DB_PASSWORD
and DB_USERNAME
for your PostgreSQL databaseREDIS_PASSWORD
for your Redis server.env
file:
multiwoven
directory and run docker-compose up -d
. This will start all Multiwoven services in the background, including the Multiwoven UI.http://<your_vm_public_ip>:8000
(replace <your_vm_public_ip>
with your VM’s public IP address). You should now see the Multiwoven UI.
6. Stopping Multiwoven:
To stop Multiwoven, navigate to the multiwoven
directory and run.
docker-compose.yml
file is present.