-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (48 loc) · 1.18 KB
/
docker-compose.yml
File metadata and controls
50 lines (48 loc) · 1.18 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
networks:
reverse-proxy:
external: true
name: reverse-proxy
internal:
external: true
name: internal
services:
recording:
container_name: ${CONTAINER_NAME}
image: ${IMAGE_NAME}:${IMAGE_TAG}
init: true
environment:
- NC_DOMAIN=${NC_DOMAIN}
- TZ=${TZ}
- RECORDING_SECRET=${RECORDING_SECRET}
- INTERNAL_SECRET=${INTERNAL_SECRET}
- HPB_PROTOCOL=${HPB_PROTOCOL}
- HPB_DOMAIN=${HPB_DOMAIN}
- HPB_PATH=${HPB_PATH}
- NC_PROTOCOL=${NC_PROTOCOL}
- SKIP_VERIFY=${SKIP_VERIFY}
- ALLOW_ALL=${ALLOW_ALL}
- VIRTUAL_HOST=${VIRTUAL_HOST}
- LETSENCRYPT_HOST=${LETSENCRYPT_HOST}
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
- VIRTUAL_PORT=${VIRTUAL_PORT}
shm_size: ${SHM_SIZE}
restart: ${RESTART_POLICY}
profiles:
- ${PROFILE}
networks:
- ${NETWORK_PROXY}
- ${NETWORK_INTERNAL}
read_only: true
tmpfs:
- /tmp
- /conf
cap_drop:
- NET_RAW
deploy:
resources:
limits:
cpus: '${CPUS_LIMIT}'
memory: ${MEMORY_LIMIT}
reservations:
cpus: '${CPUS_RESERVATION}'
memory: ${MEMORY_RESERVATION}