mirror of
https://github.com/glimpse-app/server.git
synced 2025-04-02 10:52:45 -04:00
temporary db container
This commit is contained in:
parent
18c4979bcf
commit
49ff95b3fb
1 changed files with 6 additions and 0 deletions
|
@ -37,6 +37,12 @@ docker buildx build -t glimpse-server:latest .
|
|||
docker run -it --rm -p 5000:5000 glimpse-server:latest
|
||||
```
|
||||
|
||||
Use the following to run a temporary PostgreSQL database, (**DO NOT USE IN PRODUCTION**):
|
||||
|
||||
```sh
|
||||
docker run -it --rm -e POSTGRES_USER=user -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres
|
||||
```
|
||||
|
||||
## API Endpoints
|
||||
|
||||
Each endpoint has comments describing what type of request it is and what parameters it takes.
|
||||
|
|
Loading…
Add table
Reference in a new issue