1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-10-18 17:10:11 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
aaea889e47
use apt-get in drone.yml 2021-04-03 21:38:26 +01:00
bf98c74ecf
Merge pull request #75 from Toucan-Sam/patch-1
Fix docker link in README.md
2021-04-03 21:37:54 +01:00
Toucan-Sam
fcadabd339
Fix docker link in README.md 2021-04-04 08:32:38 +12:00
2 changed files with 10 additions and 10 deletions

View File

@ -16,10 +16,10 @@ steps:
GITHUB_TOKEN: GITHUB_TOKEN:
from_secret: github_token from_secret: github_token
commands: commands:
- apt update -y - apt-get update -y
- apt install build-essential python3-pip curl software-properties-common sed upx -y - apt-get install build-essential python3-pip curl software-properties-common sed upx -y
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -) - (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
- apt install nodejs - apt-get install nodejs
- curl -sL https://git.io/goreleaser > ../goreleaser - curl -sL https://git.io/goreleaser > ../goreleaser
- chmod +x ../goreleaser - chmod +x ../goreleaser
- ./scripts/version.sh ../goreleaser - ./scripts/version.sh ../goreleaser
@ -73,10 +73,10 @@ steps:
- name: build - name: build
image: golang:latest image: golang:latest
commands: commands:
- apt update -y - apt-get update -y
- apt install build-essential python3-pip curl software-properties-common sed upx -y - apt-get install build-essential python3-pip curl software-properties-common sed upx -y
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -) - (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
- apt install nodejs - apt-get install nodejs
- curl -sL https://git.io/goreleaser > goreleaser - curl -sL https://git.io/goreleaser > goreleaser
- chmod +x goreleaser - chmod +x goreleaser
- ./scripts/version.sh ./goreleaser --snapshot --skip-publish --rm-dist - ./scripts/version.sh ./goreleaser --snapshot --skip-publish --rm-dist
@ -143,10 +143,10 @@ steps:
- name: build - name: build
image: golang:latest image: golang:latest
commands: commands:
- apt update -y - apt-get update -y
- apt install build-essential python3-pip curl software-properties-common sed upx -y - apt-get install build-essential python3-pip curl software-properties-common sed upx -y
- (curl -sL https://deb.nodesource.com/setup_14.x | bash -) - (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
- apt install nodejs - apt-get install nodejs
- curl -sL https://git.io/goreleaser > goreleaser - curl -sL https://git.io/goreleaser > goreleaser
- chmod +x goreleaser - chmod +x goreleaser
- ./scripts/version.sh ./goreleaser --snapshot --skip-publish --rm-dist - ./scripts/version.sh ./goreleaser --snapshot --skip-publish --rm-dist

View File

@ -44,7 +44,7 @@ I chose to rewrite the python [jellyfin-accounts](https://github.com/hrfee/jelly
#### Install #### Install
The [Docker](https://hub.docker.com/repository/docker/hrfee/jfa-go) image is your best bet. The [Docker](https://hub.docker.com/r/hrfee/jfa-go) image is your best bet.
```sh ```sh
docker create \ docker create \
--name "jfa-go" \ # Whatever you want to name it --name "jfa-go" \ # Whatever you want to name it