Commands
First, navigate to the marznode directory:
cd /var/lib/marznodeStart
To start Docker and run the services in the background, use the following command:
docker-compose up -dStop
To stop the running services, use the following command:
docker-compose downRestart
To restart the services, use the following command:
docker-compose restartUpdate
To update the containers and restart the services, first stop the containers, then download and install the updates:
docker-compose down && docker-compose pull && docker-compose up -dLogs
To view the logs of the Docker containers, use the following command:
docker-compose logsStatus
To check the current status of the services and containers, use the following command:
docker-compose ps