Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anri-c/docker-rq
https://github.com/anri-c/docker-rq
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anri-c/docker-rq
- Owner: anri-c
- Archived: true
- Created: 2016-10-12T08:11:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-06T01:45:39.000Z (about 6 years ago)
- Last Synced: 2024-05-31T20:59:36.226Z (6 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 13
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-rq
## rq ?
see http://python-rq.org/
## how
run redis server container
``` bash
$ cd docker-rq/server
$ docker build -t rq-server .
$ docker run --name server -d rq-server
```run worker container
``` bash
$ cd docker-rq/worker
$ docker build -t rq-worker .
$ docker run --link server:db --name worker -d rq-worker
```run dashboard container
``` bash
$ cd docker-rq/dashboard
$ docker build -t rq-dashboard .
$ docker run --link server:db --name dashboard -d rq-dashboard
```