-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 885 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 885 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
41
version: '3.1'
networks:
sde-network:
external: false
services:
slack-dump-export:
image: slack-dump-export:latest
stdin_open: true
tty: true
hostname: slack-dump-export
restart: "no"
volumes:
- /etc/localtime:/etc/localtime:ro
- ./src:/app/src:ro
- ./settings.json:/app/settings.json:ro
- ./index.js:/app/index.js:ro
- ./data:/app/data:rw
ports:
- "25565:25565"
networks:
- sde-network
depends_on:
- mongodb
mongodb:
image: mongo:4.4.6
hostname: mongodb
command: --wiredTigerCacheSizeGB 1
restart: unless-stopped
volumes:
- /etc/localtime:/etc/localtime:ro
- ./mongodb:/data/db:rw
ports:
- "192.168.65.74:27018:27017"
networks:
- sde-network
logging:
options:
max-size: 50m