-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
31 lines (30 loc) · 841 Bytes
/
docker-compose.yaml
File metadata and controls
31 lines (30 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
streamvision:
image: codebyamrit/streamvision:latest
container_name: streamvision_app
command: [ "node", "cluster.js" ]
expose:
- "3000"
env_file:
- .env
restart: unless-stopped
tmpfs:
- /tmp
volumes:
- stream_data:/usr/src/app/streams
security_opt:
- no-new-privileges:true
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "5"
labels:
- "traefik.enable=true"
- "traefik.http.routers.streamvision.rule=Host(`cctvweblink.in`)"
- "traefik.http.routers.streamvision.entrypoints=https"
- "traefik.http.routers.streamvision.tls.certresolver=letsencrypt"
- "traefik.http.services.streamvision.loadbalancer.server.port=3000"
- "logging.service=streamvision"
volumes:
stream_data: