forked from AzuraCast/AzuraCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
147 lines (137 loc) · 3.43 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
version: '2.2'
services:
nginx_proxy:
image: azuracast/azuracast_nginx_proxy:latest
build:
context: ../docker-azuracast-nginx-proxy
ports:
- '${AZURACAST_HTTP_PORT:-80}:80'
- '${AZURACAST_HTTPS_PORT:-443}:443'
volumes:
- ./util/local_ssl:/etc/nginx/certs
- /var/run/docker.sock:/tmp/docker.sock:ro
depends_on:
- web
restart: always
web:
image: azuracast/azuracast_web_v2:latest
build:
context: .
depends_on:
- mariadb
- influxdb
- stations
- redis
env_file: azuracast.env
environment:
LANG: ${LANG:-en_US.UTF-8}
AZURACAST_DC_REVISION: 8
AZURACAST_SFTP_PORT: ${AZURACAST_SFTP_PORT:-2022}
ports:
- '${AZURACAST_SFTP_PORT:-2022}:2022'
volumes:
- .:/var/azuracast/www
- tmp_data:/var/azuracast/www_tmp
- station_data:/var/azuracast/stations
- shoutcast2_install:/var/azuracast/servers/shoutcast2
- geolite_install:/var/azuracast/geoip
- sftpgo_data:/var/azuracast/sftpgo/persist
- backups:/var/azuracast/backups
restart: always
ulimits: &default-ulimits
nofile:
soft: 65536
hard: 65536
logging: &default-logging
options:
max-size: "1m"
max-file: "5"
mariadb:
image: azuracast/azuracast_db:latest
build:
context: ../docker-azuracast-db
ports:
- "127.0.0.1:3306:3306"
volumes:
- db_data:/var/lib/mysql
env_file: azuracast.env
restart: always
logging: *default-logging
influxdb:
image: azuracast/azuracast_influxdb:latest
build:
context: ../docker-azuracast-influxdb
volumes:
- influx_data:/var/lib/influxdb
restart: always
logging: *default-logging
redis:
image: azuracast/azuracast_redis:latest
build:
context: ../docker-azuracast-redis
ports:
- "127.0.0.1:6379:6379"
restart: always
logging: *default-logging
sysctls:
net.core.somaxconn: 1024
volumes:
- redis_data:/data
stations:
container_name: azuracast_stations
image: azuracast/azuracast_radio:latest
build:
context: ../docker-azuracast-radio
ports:
- '8000:8000'
- '8005:8005'
- '8006:8006'
- '8010:8010'
- '8015:8015'
- '8016:8016'
- '8020:8020'
- '8025:8025'
- '8026:8026'
- '8030:8030'
- '8035:8035'
- '8036:8036'
- '8040:8040'
- '8045:8045'
- '8046:8046'
volumes:
- station_data:/var/azuracast/stations
- ./util/local_ssl:/etc/nginx/ssl:ro
- shoutcast2_install:/var/azuracast/servers/shoutcast2
- tmp_data:/var/azuracast/www_tmp
init: true
restart: always
ulimits: *default-ulimits
logging: *default-logging
# chronograf:
# image: chronograf:alpine
# ports:
# - "8888:8888"
# command: "chronograf --influxdb-url=http://influxdb:8086"
# redis-commander:
# image: rediscommander/redis-commander:latest
# depends_on:
# - redis
# environment:
# REDIS_HOSTS: "local-app:redis:6379:0,local-sessions:redis:6379:1,local-doctrine:redis:6379:2"
# ports:
# - "127.0.0.1:8081:8081"
# blackfire:
# image: blackfire/blackfire
# environment:
# BLACKFIRE_SERVER_ID: ""
# BLACKFIRE_SERVER_TOKEN: ""
volumes:
db_data: {}
influx_data: {}
station_data: {}
shoutcast2_install: {}
geolite_install: {}
sftpgo_data: {}
tmp_data: {}
redis_data: {}
backups: {}