An unofficial Docker Image for getgrass.io Available on Docker Hub
New to Docker? Docker setup instructions
Grass allows you to earn passive income by sharing your network bandwidth
docker run -d \
--name Grass \
-p 8080:80 \
-e GRASS_USER=myuser@mail.com \
-e GRASS_PASS=mypass \
-e ALLOW_DEBUG=False \
autonomylabxyz/grass:latest
Please replace 8080 with the port you want to be able to access the status with, as well as GRASS_USER and GRASS_PASS
version: "3.0"
services:
grass:
image: autonomylabxyz/grass:latest
container_name: Grass
ports:
- 8080:80
environment:
- GRASS_USER=myuser@mail.com
- GRASS_PASS=mypass
- ALLOW_DEBUG=False
restart: unless-stopped
For arm devices change :latest to :arm64v8
docker-compose up -d
For arm devices update the Dockerfile from alpine:3.19 to arm64v8/alpine:3.19 before building
docker build -t grass .
docker run -d \
--name Grass \
-p 8080:80 \
-e GRASS_USER=myuser@mail.com \
-e GRASS_PASS=mypass \
-e ALLOW_DEBUG=False \
grass
Please replace 8080 with the port you want to be able to access the status with, as well as GRASS_USER and GRASS_PASS
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.