Advertisement
Guest User

Libre read install

a guest
Feb 23rd, 2018
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. wget https://github.com/LibreRead/server/archive/v1.2.4.tar.gz --output-document=libreread.tar.gz
  2. --2018-02-23 17:07:21-- https://github.com/LibreRead/server/archive/v1.2.4.tar.gz
  3. Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
  4. Connecting to github.com (github.com)|192.30.253.112|:443... connected.
  5. HTTP request sent, awaiting response... 302 Found
  6. Location: https://codeload.github.com/LibreRead/server/tar.gz/v1.2.4 [following]
  7. --2018-02-23 17:07:22-- https://codeload.github.com/LibreRead/server/tar.gz/v1.2.4
  8. Resolving codeload.github.com (codeload.github.com)... 192.30.253.121, 192.30.253.120
  9. Connecting to codeload.github.com (codeload.github.com)|192.30.253.121|:443... connected.
  10. HTTP request sent, awaiting response... 200 OK
  11. Length: 3128813 (3.0M) [application/x-gzip]
  12. Saving to: 'libreread.tar.gz’
  13.  
  14. libreread.tar.gz 100%[=================================================>] 2.98M 531KB/s in 6.4s
  15.  
  16. 2018-02-23 17:07:29 (478 KB/s) - 'libreread.tar.gz’ saved [3128813/3128813]
  17.  
  18. root@ubuntu-base:/var# mkdir -p /var/libreread && tar xf libreread.tar.gz -C /var/libreread --strip-components 1 && rm l
  19. ibreread.tar.gz
  20. root@ubuntu-base:/var# cd libreread/
  21. root@ubuntu-base:/var/libreread# ls
  22. cmd docker-compose.yml docs install.sh LICENSE static
  23. docker-compose.elasticsearch.yml Dockerfile elasticsearch libreread.go README.md templates
  24. root@ubuntu-base:/var/libreread# clear
  25. root@ubuntu-base:/var/libreread# ./install.sh
  26. Please enter your domain address, Eg: www.example.com
  27. www.example.com
  28. Please enter your SMTP server, Eg: smtp.fastmail.com
  29. smtp.fastmail.com
  30. Please enter your SMTP port, Eg: 587/465
  31. 465
  32. Please enter your SMTP email address, Eg: info@example.com
  33. info@example.com
  34. Please enter your SMTP password. This will be application-specific password or email password
  35. password
  36. Do you want to enable full-text search with ElasticSearch [Y/n] ?
  37. Y
  38. WARNING: Found orphan containers (elasticsearch) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
  39. libreread_redis_1 is up-to-date
  40. vm.max_map_count = 262144
  41. elasticsearch is up-to-date
  42. Starting elasticsearch ... done
  43. Waiting for elasticsearch:9200 . up!
  44. Everything is up
  45. Building libreread
  46. Step 1/16 : FROM golang:alpine as builder
  47. ---> 85256d3905e2
  48. Step 2/16 : RUN apk add --no-cache musl-dev gcc git
  49. ---> Using cache
  50. ---> 08dba91997c0
  51. Step 3/16 : WORKDIR /go/src/github.com/LibreRead/server
  52. ---> Using cache
  53. ---> c2722e404de1
  54. Step 4/16 : COPY . .
  55. ---> 5240eaf4e9c6
  56. Step 5/16 : RUN go-wrapper download
  57. ---> Running in ab09977029a8
  58. /bin/sh: go-wrapper: not found
  59. ERROR: Service 'libreread' failed to build: The command '/bin/sh -c go-wrapper download' returned a non-zero code: 127
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement