karideo/back/docker-compose.yaml

20 lines
337 B
YAML
Raw Normal View History

2020-02-15 09:08:40 +01:00
version: "3.7"
2019-12-21 21:52:26 +01:00
services:
REST_video_service:
build: src
2019-12-21 21:52:26 +01:00
restart: always
image: yui.heero/video_rest_api
container_name: video_rest_api
ports:
2020-02-15 09:08:40 +01:00
- "15080:80"
2020-01-02 22:43:06 +01:00
volumes:
2020-03-21 00:29:09 +01:00
- /workspace/data/karideo/media:/application/data
2020-03-10 22:32:47 +01:00
- ./default_images:/default_images:ro
env_file:
- ./config.env
2019-12-21 21:52:26 +01:00