-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
72 lines (70 loc) · 1.62 KB
/
docker-compose.yml
File metadata and controls
72 lines (70 loc) · 1.62 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
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
- ./sims:/appl/data/sims: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
- ./sims:/appl/data/sims:z
env_file:
- .env
firestarr-dev:
image: firestarr-dev
build:
context: .
target: firestarr-dev
dockerfile: .docker/Dockerfile.dev
args:
VERSION: ${VERSION}
USERNAME: ${USERNAME}
USER_ID: ${USER_ID}
tags:
- firestarr-dev:${VERSION}
entrypoint: tail -f /dev/null
security_opt:
- seccomp:unconfined
volumes:
- /etc/ssl/certs:/etc/ssl/certs
- type: bind
source: ./
target: /appl/firestarr
- ./data:/appl/data:z
- ./sims:/appl/data/sims:z
restart: always
cap_add:
- PERFMON
- SYS_PTRACE
- SYS_ADMIN
env_file:
- .env