mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-04-28 08:11:08 -05:00
12 lines
219 B
Markdown
12 lines
219 B
Markdown
### Setting up the test databsae
|
|
|
|
```
|
|
podman run -d \
|
|
--name phylum \
|
|
-e POSTGRES_USER=phylum \
|
|
-e POSTGRES_PASSWORD=phylum \
|
|
-e POSTGRES_DB=phylum \
|
|
-p 5432:5432 \
|
|
docker.io/postgres:latest
|
|
```
|