source: 1-start-db.sh@ e9b4ba9

Last change on this file since e9b4ba9 was e9b4ba9, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

prototype

  • Property mode set to 100644
File size: 280 bytes
Line 
1podman run \
2 --cgroup-manager=cgroupfs \
3 -d \
4 --rm \
5 -e POSTGRES_USER=postgres \
6 -e POSTGRES_PASSWORD=1234 \
7 -p 5432:5432 \
8 --network "host" \
9 --privileged \
10 --mount type=bind,source=./DatabaseFolder,target=/var/lib/postgresql/data \
11 --name postgres_it \
12 postgres
Note: See TracBrowser for help on using the repository browser.