From 0b1b831c5e9b55c422d41635933c30065162ba25 Mon Sep 17 00:00:00 2001 From: 10thfloor Date: Thu, 26 Aug 2021 08:19:15 -0700 Subject: [PATCH 1/2] Remove whitespace from docker run command that was causing container not to run. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0053cc7..8b8e6e2 100644 --- a/README.md +++ b/README.md @@ -60,15 +60,15 @@ docker-compose up -d The following startup options can be configured (defaults shown). If you're using DockerCompose, these configuration values are defined in [`docker-compose.yml`](docker-compose.yml). ```bash -docker run ghcr.io/onflow/fcl-dev-wallet:latest \ - -e PORT=8701 \ - -e FLOW_ACCESS_NODE=http://emulator:8080 \ - -e FLOW_ACCOUNT_KEY_ID=0 \ - -e FLOW_ACCOUNT_PRIVATE_KEY=4f82df6790f07b281adb5bbc848bd6298a2de67f94bdfac7a400d5a1b893de5 \ - -e FLOW_ACCOUNT_PUBLIC_KEY=519e9fbf966c6589fafe60903c0da5f55c5cb50aee5d870f097b35dfb6de13c170718cd92f50811cdd9290e51c2766440b696e0423a5031ae482cca79e3c479 \ - -e FLOW_INIT_ACCOUNTS=0 \ - -e FLOW_ACCOUNT_ADDRESS=0xf8d6e0586b0a20c7 \ - -e FLOW_AVATAR_URL=https://avatars.onflow.org/avatar/ +docker run -it \ + -e PORT=8701 \ + -e FLOW_ACCESS_NODE=http://emulator:8080 \ + -e FLOW_ACCOUNT_KEY_ID=0 \ + -e FLOW_ACCOUNT_PRIVATE_KEY=4f82df6790f07b281adb5bbc848bd6298a2de67f94bdfac7a400d5a1b893de5 \ + -e FLOW_ACCOUNT_PUBLIC_KEY=519e9fbf966c6589fafe60903c0da5f55c5cb50aee5d870f097b35dfb6de13c170718cd92f50811cdd9290e51c2766440b696e0423a5031ae482cca79e3c479 \ -e FLOW_INIT_ACCOUNTS=0 \ + -e FLOW_ACCOUNT_ADDRESS=0xf8d6e0586b0a20c7 \ + -e FLOW_AVATAR_URL=https://avatars.onflow.org/avatar/ \ + ghcr.io/onflow/fcl-dev-wallet:latest ``` **Note:** The following variables should match the `emulator-account` defined in your project's `flow.json` file. From 9c593695fdbf1c54e6efb8a2c5fcdd93dc46c3b0 Mon Sep 17 00:00:00 2001 From: 10thfloor Date: Thu, 26 Aug 2021 08:23:43 -0700 Subject: [PATCH 2/2] Give me space. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b8e6e2..9a6de60 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ docker-compose up -d ``` ## Startup Options -The following startup options can be configured (defaults shown). If you're using DockerCompose, these configuration values are defined in [`docker-compose.yml`](docker-compose.yml). +The following startup options can be configured (defaults shown). If you're using Docker Compose, these configuration values are defined in [`docker-compose.yml`](docker-compose.yml). ```bash docker run -it \