-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (40 loc) · 891 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (40 loc) · 891 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
32
33
34
35
36
37
38
39
40
version: "3.1"
services:
airbnb:
build:
context: .
dockerfile: Dockerfile
hostname: airbnb
environment:
TERM: xterm-256color
LOCATION: "Berlin"
TOKEN: ""
SLACK_WEBHOOK: ""
SLACK_CHANNEL: ""
SLACK_USERNAME: ""
SHOW_IMAGES: "true"
MAKE_INQUIRIES: "false"
PIPE_TO_SLACK: "false"
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
read_only: false
mongo:
image: mongo
volumes:
- "mongo:/data/db"
hostname: mongo
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
- CHOWN
- NET_BIND_SERVICE
security_opt:
- no-new-privileges:true
read_only: false
volumes:
mongo: