Building and running the whole setup can be done with the following commands:
docker compose up
Just to build, once you've pulled the images
docker compose build --force-rm
Accessing bash
in your web containers can be achieved by:
docker compose exec -it cfg-web bash
docker compose exec -it txs-web bash
Ctrl+d
will end interactive mode.
Accessing redis-cli
in either redis can be achieved like so"
docker compose exec -it cgw-redis redis-cli
docker compose exec -it txs-redis redis-cli
Accessing postgres
. The Safe Config and Safe transaction services use the different instance
docker compose exec -it cfg-db psql -U postgres
docker compose exec -it txs-db psql -U postgres