Override CORS, query apis from client

This commit is contained in:
sid palas
2023-01-23 15:06:40 -05:00
parent 22ad01e315
commit 961c90cd7b
15 changed files with 268 additions and 17 deletions

View File

@ -0,0 +1,16 @@
Docker Desktop: https://docs.docker.com/get-docker/
Docker Engine: https://get.docker.com/
Hello World:
```
docker run docker/whalesay cowsay "Hey Team! 👋"
```
Run Postgres:
```
docker run \
--env POSTGRES_PASSWORD=foobarbaz \
--publish 5432:5432 \
postgres:15.1-alpine
```