diff options
author | Valery Piashchynski <[email protected]> | 2020-02-12 18:19:27 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-12 18:19:27 +0300 |
commit | f2cc3889c78e72fce2553ba1760ae63e22bb1ec1 (patch) | |
tree | 98efc8b23ac131fc74a25b035598638fa059b9af | |
parent | 7165d642978262130db2ca029a0597d5c77f6e8c (diff) | |
parent | f4a637b400c0db886bf36330c3ea59bc8dca8f0f (diff) |
Merge pull request #247 from tarampampam/patch-1
Update README.md, fix wrong docker image path
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -56,7 +56,7 @@ $ composer require spiral/roadrunner $ ./vendor/bin/rr get-binary ``` -> For getting roadrunner binary file you can use our docker image: `spiral/roadrunner:X.X.X` (more information about image and tags can be found [here](https://hub.docker.com/r/spiral/roadrunner/)) +> For getting roadrunner binary file you can use our docker image: `spiralscout/roadrunner:X.X.X` (more information about image and tags can be found [here](https://hub.docker.com/r/spiralscout/roadrunner/)) Extensions: -------- @@ -45,4 +45,4 @@ if [ "$1" == "all" ]; then exit fi -go build -o "$OD/rr" cmd/rr/main.go +go build -ldflags "$LDFLAGS" -o "$OD/rr" cmd/rr/main.go |