forked from AzuraCast/AzuraCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
54 lines (44 loc) · 933 Bytes
/
docker-compose.dev.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '2'
services:
stations:
build:
context: ../docker-azuracast-stations
web:
build:
context: ../docker-azuracast-web
environment:
APPLICATION_ENV: "development"
volumes:
- .:/var/azuracast/www
cli:
environment:
APPLICATION_ENV: "development"
cron:
environment:
APPLICATION_ENV: "development"
nginx:
build:
context: ../docker-azuracast-nginx
volumes:
- .:/var/azuracast/www
static:
build:
context: ./util/docker/static
volumes:
- ./web/static:/data
stations_cli:
image: azuracast/azuracast_stations:latest
volumes:
- station_data:/var/azuracast/stations
command: 'bash'
mariadb:
ports:
- "3306:3306"
redis:
ports:
- "6379:6379"
chronograf:
image: chronograf:alpine
ports:
- "8888:8888"
command: "chronograf --influxdb-url=http://influxdb:8086"