Useful commands
How to know which service is running in which port?
docker ps --format "table {{.Names}}\t{{.Ports}}\t{{.Image}}"
Stop running any Service After some modifications
If you want to apply changes made to your some file, follow these steps:
1. Navigate to your Service directory
cd ~/AppFlowy-Cloud
Stop running containers
docker compose down
Edit your files
vim .env
Rebuild and restart the containers
docker compose up -d --build
Restarting services
Instead of stoping the service you can just restart the service
docker compose restart <service_name>
Last updated