An open API service indexing awesome lists of open source software.

https://github.com/alekseyscorpi/fruits-vegetables-cv-docker

This repo contains files to build container with postgresql database for fruits-vegetables-cv project (https://github.com/AlekseyScorpi/fruits-vegetables-CV).
https://github.com/alekseyscorpi/fruits-vegetables-cv-docker

docker dockerfile script sql

Last synced: over 1 year ago
JSON representation

This repo contains files to build container with postgresql database for fruits-vegetables-cv project (https://github.com/AlekseyScorpi/fruits-vegetables-CV).

Awesome Lists containing this project

README

          

Please, before run specify .env file:
-
- POSTGRES_USER={postgres_user} (example: postgres)
- POSTGRES_DB={postgtres_db} (example: default)
- POSTGRES_PASSWORD={your_postgres_password} (example: python-fruits)
***
### Build container
```
docker build --build-arg SMART_SCALES_PASSWORD={your_password} -t {your_image_name} .
```
***
### Run container
```
docker run --env-file .env --name {your_container_name} -p 5433:5432 -d {your_image_name}
```