-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 878 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 878 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
# This file is used to start the containers for all your cameras
# Make sure all the nescessary camera config directories extist under
# RMS_data.
#
# Add an instance for each camera and then do: podman-compose up -d
# from the directory where this file is.
#
# REPLACE CAMERANAME with the names you received for your cameras
#
services:
[CAMERANAME1]:
image: docker.io/lancer73/rms
container_name: [CAMERANAME1]
hostname: [CAMERANAME1]
restart: on-failure:2
volumes:
- /home/[MYUSER]/rms_container/[CAMERANAME1]:/root
tmpfs:
- /tmp:size=512m
#
# CAMERANAME2:
# image: docker.io/lancer73/rms
# container_name: [CAMERANAME2]
# hostname: [CAMERANAME2]
# restart: on-failure:2
# volumes:
# - /home/[MYUSER]/rms_container/[CAMERANAME2]:/root
# - proc/diskstats:/proc/diskstats:ro
# tmpfs:
# - /tmp:size=512m