Sign inSign up

steemfans/authsteem

By steemfans

Updated 8 days ago

https://auth.steem.fans

Image
0

10K+

steemfans/authsteem repository overview

GitHub license

AuthSteem

Signer app for Steem

Usage

# Install dependencies
npm install

# Serve on localhost:8080
npm run serve

# Build for production
npm run build

# Build desktop apps
npm run build-electron

Deploy Web Server by Docker

# clone
git clone https://github.com/steemfans/authsteem.git

cd authsteem

# build docker image
docker build --build-arg TAG=master -t authsteem .

# deploy image
docker run -itd \
  --name authsteem \
  --restart always \
  -p 8080:80 \
  authsteem

##############

# or you can use image which I build.
docker pull steemfans/authsteem:latest

# deploy image
docker run -itd \
  --name authsteem \
  --restart always \
  -p 8080:80 \
  steemfans/authsteem:latest

Tag summary

Content type

Image

Digest

sha256:f5d742724

Size

27.7 MB

Last updated

8 days ago

docker pull steemfans/authsteem