Skip to content

Commit 8a9a6eb

Browse files
committed
docs(readme): fix typo src -> srv
Signed-off-by: Reza Rajan <[email protected]>
1 parent 3941d30 commit 8a9a6eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ docker run --detach \
140140
-e CARDANO_SHELLEY_KES_KEY=/opt/cardano/config/keys/kes.skey \
141141
-e CARDANO_SHELLEY_OPERATIONAL_CERTIFICATE=/opt/cardano/config/keys/node.cert \
142142
-e CARDANO_SHELLEY_VRF_KEY=/opt/cardano/config/keys/vrf.skey \
143-
-v /src/cardano/node-keys:/opt/cardano/config/keys \
144-
-v /src/cardano/node-db:/data/db \
145-
-v /src/cardano/node-ipc:/ipc \
143+
-v /srv/cardano/node-keys:/opt/cardano/config/keys \
144+
-v /srv/cardano/node-db:/data/db \
145+
-v /srv/cardano/node-ipc:/ipc \
146146
-p 3001:3001 \
147147
-p 12798:12798 \
148148
ghcr.io/blinklabs-io/cardano-node run
@@ -161,9 +161,9 @@ docker run --detach \
161161
-e CARDANO_SHELLEY_KES_KEY=/opt/cardano/config/keys/kes.skey \
162162
-e CARDANO_SHELLEY_OPERATIONAL_CERTIFICATE=/opt/cardano/config/keys/node.cert \
163163
-e CARDANO_SHELLEY_VRF_KEY=/opt/cardano/config/keys/vrf.skey \
164-
-v /src/cardano/node-keys:/opt/cardano/config/keys \
165-
-v /src/cardano/node-db:/data/db \
166-
-v /src/cardano/node-ipc:/ipc \
164+
-v /srv/cardano/node-keys:/opt/cardano/config/keys \
165+
-v /srv/cardano/node-db:/data/db \
166+
-v /srv/cardano/node-ipc:/ipc \
167167
-p 3001:3001 \
168168
-p 12798:12798 \
169169
ghcr.io/blinklabs-io/cardano-node run
@@ -193,9 +193,9 @@ for any reason. This will also cause the container to automatically restart
193193
after a host reboot, so long as Docker is configured to start on boot. We
194194
set variables to configure a block producer and pass the paths to the 3 keys
195195
we need. Our node's persistent data and client communication socket are mapped
196-
to `/src/cardano/node-db` and `/src/cardano/node-ipc` on the host,
196+
to `/srv/cardano/node-db` and `/srv/cardano/node-ipc` on the host,
197197
respectively. This allows for running applications directly on the host which
198-
may need access to these. We also map `/src/cardano/node-keys` on the host to
198+
may need access to these. We also map `/srv/cardano/node-keys` on the host to
199199
a path within the container to support running as a block producer. Last, we
200200
add mapping the host's port 12798 to the container 12798, which is the port for
201201
exposing the node's metrics in Prometheus format, for monitoring.

0 commit comments

Comments
 (0)