You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,14 +212,14 @@ Make sure to replace `BASH_PATH` with the actual path you retrieved in step 1.
212
212
Using [Docker](https://www.docker.com), you can run the [script](./safe_hashes.sh) in a containerised environment with all dependencies pre-installed. This is useful if you do not wish to install the required tools locally, or if you are on a system where installation is difficult.
213
213
214
214
> [!TIP]
215
-
> The [Docker](https://www.docker.com) setup can also be used with [Podman](https://podman.io) by simply replacing `docker-compose` with [`podman-compose`](https://github.com/containers/podman-compose) in the commands. On Windows and macOS, you may need to disable or override the [`AppArmor`](https://apparmor.net) security option in the [`compose.yaml`](./compose.yaml) file, as it is only supported on Linux environments. [Docker](https://www.docker.com) typically ignores unsupported security options like [`AppArmor`](https://apparmor.net) on non-Linux systems, but [Podman](https://podman.io) will fail when encountering them.
215
+
> The [Docker](https://www.docker.com) setup can also be used with [Podman](https://podman.io) by simply replacing `dockercompose` with [`podman-compose`](https://github.com/containers/podman-compose) in the commands. On Windows and macOS, you may need to disable or override the [`AppArmor`](https://apparmor.net) security option in the [`compose.yaml`](./compose.yaml) file, as it is only supported on Linux environments. [Docker](https://www.docker.com) typically ignores unsupported security options like [`AppArmor`](https://apparmor.net) on non-Linux systems, but [Podman](https://podman.io) will fail when encountering them.
216
216
217
217
#### Building the Docker Image
218
218
219
219
Build the [Docker](https://www.docker.com) image using [Docker Compose](https://docs.docker.com/compose/):
220
220
221
221
```console
222
-
docker-compose build
222
+
dockercompose build
223
223
```
224
224
225
225
#### Basic Usage
@@ -229,13 +229,13 @@ To run the [script](./safe_hashes.sh) using [Docker Compose](https://docs.docker
229
229
Example displaying help:
230
230
231
231
```console
232
-
docker-compose run --rm safe-tx-hashes-util --help
232
+
dockercompose run --rm safe-tx-hashes-util --help
233
233
```
234
234
235
235
Example calculating the Safe transaction hashes:
236
236
237
237
```console
238
-
docker-compose run --rm safe-tx-hashes-util --network arbitrum --address 0x111CEEee040739fD91D29C34C33E6B3E112F2177 --nonce 234
238
+
dockercompose run --rm safe-tx-hashes-util --network arbitrum --address 0x111CEEee040739fD91D29C34C33E6B3E112F2177 --nonce 234
239
239
```
240
240
241
241
#### Using Message Files
@@ -248,7 +248,7 @@ When calculating off-chain message hashes, you need to provide a local directory
0 commit comments