-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
33 lines (31 loc) · 1.02 KB
/
docker-compose.yml
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
version: '3'
services:
cache-populator:
image: ${repo_pre}dips/cache-populator${populate_tag}
restart: always
expose:
- 1337
depends_on:
- media-server
media-server:
image: ${repo_pre}dips/media-server${tag}
restart: always
ports:
- 80:5000
depends_on:
- slack-integration
volumes:
- "./DevDays2019:/app/wwwroot/Conference/DevDays2019"
- "./DevDays2018:/app/wwwroot/Conference/DevDays2018"
- "./Interesting:/app/wwwroot/Conference/Interesting"
- "./OptimusInteresting:/app/wwwroot/Conference/OptimusInteresting"
- "./Utviklerforum:/app/wwwroot/Conference/Utviklerforum"
- "./External:/app/wwwroot/Conference/External"
- "./Sprintdemo:/app/wwwroot/Conference/Sprintdemo"
- "./TromsoInteresting:/app/wwwroot/Conference/TromsoInteresting"
- "./OsloInteresting:/app/wwwroot/Conference/OsloInteresting"
slack-integration:
image: ${repo_pre}dips/slack-integration${slack_tag}
restart: always
expose:
- 1338