Building and running the whole setup can be done with the following commands:
docker compose upJust to build, once you've pulled the images
docker compose build --force-rmAccessing bash in your web containers can be achieved by:
docker exec -it safe-infrastructure_cfg-web_1 bash
docker exec -it safe-infrastructure_txs-web_1 bashCtrl+d will end interactive mode.
Accessing redis-cli in either redis can be achieved like so"
docker exec -it safe-infrastructure_cgw-redis_1 redis-cli
docker exec -it safe-infrastructure_txs-redis_1 redis-cliAccessing postgres. The Safe Config and Safe transaction services share the same instance
docker exec -it safe-infrastructure_db_1 psql -U postgres