Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugodf/express-redis-docker
A Node/Express app with Redis through Docker Compose
https://github.com/hugodf/express-redis-docker
docker docker-compose docker-redis express express-redis-docker javascript node redis
Last synced: 3 months ago
JSON representation
A Node/Express app with Redis through Docker Compose
- Host: GitHub
- URL: https://github.com/hugodf/express-redis-docker
- Owner: HugoDF
- Created: 2018-06-05T21:03:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T15:00:03.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T12:11:50.580Z (4 months ago)
- Topics: docker, docker-compose, docker-redis, express, express-redis-docker, javascript, node, redis
- Language: JavaScript
- Homepage: https://codewithhugo.com/setting-up-express-and-redis-with-docker-compose/
- Size: 6.84 KB
- Stars: 65
- Watchers: 2
- Forks: 47
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Express Redis Docker app
Requirements: [Docker Community Edition](https://www.docker.com/community-edition)
To start the app run: `docker-compose up`.
It will then be started on port 3000.
# Endpoints
## Hello World
```sh
curl http://localhost:3000
```## Storing Data
```sh
curl http://localhost:3000/store/my-key\?some\=value\&some-other\=other-value
```## Fetching Data
```sh
curl http://localhost:3000/my-key
```