Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/b-fuze/ephemeral-db
Create ephemeral Postgres & MySQL databases easily with Docker
https://github.com/b-fuze/ephemeral-db
Last synced: about 1 month ago
JSON representation
Create ephemeral Postgres & MySQL databases easily with Docker
- Host: GitHub
- URL: https://github.com/b-fuze/ephemeral-db
- Owner: b-fuze
- License: mit
- Created: 2022-06-21T19:38:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T15:45:22.000Z (6 months ago)
- Last Synced: 2024-10-19T07:15:22.164Z (3 months ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ephemeral-db
Note: **This tool should not be used for creating secure production-ready
databases. This tool should only be used to create quick ephemeral/temporary
databases that you can use to test and easily debug applications with.**## Usage
```
$ ephemeral-postgres -h
USAGE
ephemeral-postgres [-f|--force] [--shell] IDENTIFIER
ephemeral-postgres [-k|--kill] IDENTIFIER
ephemeral-postgres [-h|--help]DESCRIPTION
Creates an emphemeral PostgreSQL database with
Docker using IDENTIFIER as the root password, main
username, their password, and also the primary
database name. IDENTIFIER can't start or end
with dashes, but overall can include alphanumberic
characters, underscores, and dashes.
``````
$ ephemeral-mysql -h
USAGE
ephemeral-mysql [-f|--force] [--shell] IDENTIFIER
ephemeral-mysql [-k|--kill] IDENTIFIER
ephemeral-mysql [-h|--help]DESCRIPTION
Creates an emphemeral MySQL database with
Docker using IDENTIFIER as the root password, main
username, their password, and also the primary
database name. IDENTIFIER can't start or end
with dashes, but overall can include alphanumberic
characters, underscores, and dashes.
```## License
MIT