Skip to content

Commit

Permalink
Update README and add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
i5heu committed Nov 15, 2022
1 parent 30f3537 commit d922a22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This cache is still in development and is not ready for production use. It is no
* `SS3C_CORS_DOMAIN` - The domain to allow CORS requests from. Defaults to `https://example.com`
* `SS3C_USE_MAX_RAM_GB` - The maximum amount of RAM to use for caching. Defaults to `2` GB
* `SS3C_USE_MAX_DISK_GB` - The maximum amount of disk space to use for caching. Defaults to `25` GB
* `SS3C_STORAGE_PATH` - The path to store cached files. Defaults to `/cache`
* `SS3C_INFLUXDB_URL` - The URL of your InfluxDB instance. Defaults to `""`
* `SS3C_INFLUXDB_TOKEN` - The token to use for authentication with InfluxDB. Defaults to `""`
* `SS3C_INFLUXDB_ORG` - The organization to use for authentication with InfluxDB. Defaults to `""`
Expand All @@ -38,7 +39,7 @@ services:
ports:
- 8080:8084
volumes:
- ./cache:/storage
- ./cache:/cache
```
## Docker Hub
Expand Down
2 changes: 2 additions & 0 deletions buildAndPush.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
docker build . -t i5heu/simple-s3-cache:latest
docker push i5heu/simple-s3-cache:latest

0 comments on commit d922a22

Please sign in to comment.