Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Mar 19, 2024
1 parent 844a2f7 commit b5b42cd
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,23 @@ Ensure Docker is installed on your system. For installation instructions, please

## Quick Start 🚀
You can run it easily passing the appropriate environment variables.
- Replace `<your_email>` and `<your_password>` with your actual Grass account credentials:
### Docker cli 🐳
```bash
docker run -d --name grass -h my_device -e GRASS_USER=your_email -e GRASS_PASS=your_password mrcolorrain/grass
```
### Docker compose 🐳
```yaml
version: "3.9"
services:
grass:
container_name: grass
hostname: my_device
image: mrcolorrain/grass
environment:
- GRASS_USER=your_email
- GRASS_PASS=your_password
restart: unless-stopped
```
- ### Docker cli 🐳
```bash
docker run -d --name grass -h my_device -e GRASS_USER=your_email -e GRASS_PASS=your_password mrcolorrain/grass
```
- ### Docker compose 🐳
```yaml
version: "3.9"
services:
grass:
container_name: grass
hostname: my_device
image: mrcolorrain/grass
environment:
- GRASS_USER=your_email
- GRASS_PASS=your_password
restart: unless-stopped
```
## Contributing 🤲
Your contributions are welcome! If you'd like to improve the project or fix a bug, please fork the repository and submit a pull request. Let's make this project even better, together!
Expand Down

0 comments on commit b5b42cd

Please sign in to comment.