Troubleshooting Tines on Docker Compose

If you encounter issues during the installation process and require assistance, contact support@tines.io. Please include the docker-compose logs output.

Restarting Tines  

If you need to restart Tines use the following command:

docker-compose restart

If you have modified your .env file and want the changes to take effect, use the following command to restart Tines:

sudo docker-compose down && docker-compose up -d

💡Note

Log Collection 

To collect Tines logs, first get the list of containers running on your host:

sudo docker container ls

Then get the logs for the desired container:

sudo docker logs (container id) > tines.log

Was this helpful?