mirror of
https://github.com/Zeyi-Lin/HivisionIDPhotos.git
synced 2025-09-15 14:58:34 +08:00
21 lines
416 B
YAML
21 lines
416 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
hivision_idphotos:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: linzeyi/hivision_idphotos
|
|
command: python3 -u app.py --host 0.0.0.0 --port 7860
|
|
ports:
|
|
- '7860:7860'
|
|
|
|
hivision_idphotos_api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: linzeyi/hivision_idphotos
|
|
command: python3 deploy_api.py
|
|
ports:
|
|
- '8080:8080'
|