https://github.com/hardyscc/abb
https://github.com/hardyscc/abb
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hardyscc/abb
- Owner: hardyscc
- Created: 2018-06-20T09:38:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T08:31:53.000Z (over 7 years ago)
- Last Synced: 2025-01-14T00:33:06.562Z (over 1 year ago)
- Language: TypeScript
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# start a docker instance of postgres, redis
docker run --name some-redis -p 6379:6379 -d redis
docker run --name some-postgres -p 5432:5432 -d -e POSTGRES_DB=abb postgres
# start a command line instance of postgres, redis
docker run -it --rm --link some-redis:redis redis redis-cli -h redis -p 6379
docker run -it --rm --link some-postgres:postgres postgres psql -h postgres -U postgres abb