@@ -54,6 +54,9 @@ docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium -t q
5454
5555Use latest version instead of ` 1.4.2 ` .
5656
57+ > [ !TIP]
58+ > You can use the ` task build ` command instead. See the [ Task] ( #task ) section below.
59+
5760The image that is built is light and safe. It is based on Alpine Linux with the Quilibrium node binary, not the
5861source code, nor the Go development environment. The image also has the ` grpcurl ` tool that can be used to
5962query the gRPC interface.
@@ -105,6 +108,9 @@ Run Quilibrium in a container:
105108docker compose up -d
106109```
107110
111+ > [ !TIP]
112+ > You can alternatively use the ` task up ` command. See the [ Task] ( #task-1 ) section above.
113+
108114A ` .config/ ` subfolder will be created under the current folder, this is mapped inside the container.
109115Make sure you backup ` config.yml ` and ` keys.yml ` .
110116
@@ -159,10 +165,10 @@ services:
159165 resources :
160166 limits :
161167 cpus : ' 4' # Maximum CPU count that the container can use
162- memory : 16G # Maximum memory that the container can use
168+ memory : ' 16G' # Maximum memory that the container can use
163169 reservations :
164170 cpus : ' 2' # CPU count that the container initially requests
165- memory : 8G # Memory that the container initially request
171+ memory : ' 8G ' # Memory that the container initially request
166172` ` `
167173
168174
@@ -213,3 +219,9 @@ Run the DB console:
213219docker compose exec node node -db-console
214220` ` `
215221
222+ Run the Quilibrium client :
223+ ` ` ` shell
224+ docker compose exec node qclient help
225+ docker compose exec node qclient token help
226+ docker compose exec node qclient token balance
227+ ` ` `
0 commit comments