Anuj-Panthri/mlops_postgres
0
1---2title: Mlops Postgres3emoji: ๐4colorFrom: gray5colorTo: gray6sdk: docker7pinned: false8app_port: 54329---10 11Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference12 13 14 15```bash16docker build -t pg_local .17```18 19```bash20docker run --name pg_local_container --env-file .env -p 5432:5432 pg_local21```22 23```bash24docker stop pg_local_container25docker rm pg_local_container26```