-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
89 lines (86 loc) · 2.07 KB
/
Copy pathdocker-compose.yml
File metadata and controls
89 lines (86 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
services:
firestarr:
image: firestarr
build:
context: .
target: firestarr
dockerfile: .docker/Dockerfile
args:
VERSION: ${VERSION}
tags:
- firestarr:${VERSION}
volumes:
- type: bind
source: ./settings.ini
target: /appl/firestarr/settings.ini
- ./test:/appl/firestarr/test:z
- ./grid:/appl/firestarr/grid:z
- ./data:/appl/data:z
env_file:
- .env
firestarr-minimal:
image: firestarr-minimal
build:
context: .
target: firestarr-minimal
dockerfile: .docker/Dockerfile
args:
VERSION: ${VERSION}
tags:
- firestarr-minimal:${VERSION}
volumes:
- type: bind
source: ./settings.ini
target: /appl/firestarr/settings.ini
- ./test:/appl/firestarr/test:z
- ./grid:/appl/firestarr/grid:z
- ./data:/appl/data:z
env_file:
- .env
firestarr-dev:
image: firestarr-dev
build:
context: .
target: firestarr-dev
dockerfile: .docker/Dockerfile.dev
args:
VERSION: ${VERSION}
tags:
- firestarr-dev:${VERSION}
entrypoint: tail -f /dev/null
security_opt:
- seccomp:unconfined
volumes:
- /etc/ssl/certs:/etc/ssl/certs
- ~/.ssh:/home/user/.ssh
- ./repo/.bash_aliases:/home/user/.bash_aliases
- type: bind
source: ./
target: /appl/firestarr
- ./data:/appl/data:z
restart: always
cap_add:
- PERFMON
- SYS_PTRACE
- SYS_ADMIN
env_file:
- .env
# HACK: so we can call cmake to update version
firestarr-build:
image: firestarr-build
build:
context: .
target: firestarr-build
dockerfile: .docker/Dockerfile
entrypoint: /appl/firestarr/scripts/build.sh
security_opt:
- seccomp:unconfined
volumes:
- /etc/ssl/certs:/etc/ssl/certs
- ~/.ssh:/home/user/.ssh
- ./repo/.bash_aliases:/home/user/.bash_aliases
- type: bind
source: ./
target: /appl/firestarr
- ./data:/appl/data:z
restart: never