Add readme about docker, remove postgres.conf from git

This commit is contained in:
Guntis Smaukstelis
2023-10-24 19:59:52 +03:00
parent 6819aa3166
commit 4dddcbff03
3 changed files with 10 additions and 3 deletions
+9
View File
@@ -36,3 +36,12 @@ npm run dev
- Docker
- Shell script
- Fly.io
## Docker
```
docker pull postgres
docker run --name local-postgres -e POSTGRES_PASSWORD=mysecretpassword -p 5432:5432 -d postgres
docker stop local-postgres
docker start local-postgres
```