mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +02:00
add webdis
This commit is contained in:
parent
a07632a040
commit
a7ad9f2d05
@ -303,6 +303,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] amancevice/superset
|
- [x] amancevice/superset
|
||||||
- [x] v2ray/official :cn:
|
- [x] v2ray/official :cn:
|
||||||
- [x] centurylink/watchtower
|
- [x] centurylink/watchtower
|
||||||
|
- [x] anapsix/webdis
|
||||||
- [x] wekanteam/wekan
|
- [x] wekanteam/wekan
|
||||||
- [x] yourls
|
- [x] yourls
|
||||||
- [x] zookeeper
|
- [x] zookeeper
|
||||||
|
27
webdis/README.md
Normal file
27
webdis/README.md
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
webdis
|
||||||
|
======
|
||||||
|
|
||||||
|
[Webdis][1] is a simple HTTP server which forwards commands to Redis and sends
|
||||||
|
the reply back using a format of your choice. Accessing
|
||||||
|
/COMMAND/arg0/arg1/.../argN[.ext] on Webdis executes the command on Redis and
|
||||||
|
returns the response; the reply format can be changed with the optional
|
||||||
|
extension (.json, .txt…)
|
||||||
|
|
||||||
|
## docker-compose.yml
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
webdis:
|
||||||
|
image: anapsix/webdis
|
||||||
|
ports:
|
||||||
|
- "7379:7379"
|
||||||
|
environment:
|
||||||
|
- REDIS_HOST=x.x.x.x
|
||||||
|
- REDIS_PORT=6379
|
||||||
|
- REDIS_AUTH=null
|
||||||
|
- DATABASE=0
|
||||||
|
- HTTP_HOST=0.0.0.0
|
||||||
|
- HTTP_PORT=7379
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|
||||||
|
[1]: https://webd.is/
|
12
webdis/docker-compose.yml
Normal file
12
webdis/docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
webdis:
|
||||||
|
image: anapsix/webdis
|
||||||
|
ports:
|
||||||
|
- "7379:7379"
|
||||||
|
environment:
|
||||||
|
- REDIS_HOST=x.x.x.x
|
||||||
|
- REDIS_PORT=6379
|
||||||
|
- REDIS_AUTH=null
|
||||||
|
- DATABASE=0
|
||||||
|
- HTTP_HOST=0.0.0.0
|
||||||
|
- HTTP_PORT=7379
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user