-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
81 lines (75 loc) · 1.68 KB
/
Copy pathdocker-compose.yml
File metadata and controls
81 lines (75 loc) · 1.68 KB
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
services:
# Servicio DynDNS
dyndns:
build:
context: scripts/dyndns
container_name: dyndns
restart: unless-stopped
networks:
- default
# Servicio Nginx
nginx:
build:
context: .
dockerfile: src/nginx/docker/Dockerfile
container_name: nginx
ports:
- 8080:80
- 8443:443
- 1935:1935
depends_on:
- dyndns
volumes:
- ./src/nginx/webpages/videos/hls:/var/www/webpages/videos/hls
restart: unless-stopped
networks:
- default
# Servicio PHP
php-fpm:
image: php:8.2-fpm
container_name: php-fpm
restart: unless-stopped
networks:
- default
icecast:
image: libretime/icecast
container_name: icecast
ports:
- "8000:8000"
volumes:
- ./config/icecast/icecast.xml:/etc/icecast.xml
environment:
- ICECAST_SOURCE_PASSWORD=sourcepass
- ICECAST_ADMIN_PASSWORD=hackme
- ICECAST_PASSWORD=hackme
- ICECAST_HOSTNAME=icecast
restart: unless-stopped
networks:
- default
ices2:
build:
context: .
dockerfile: config/icecast/ices2/Dockerfile
container_name: ices2
depends_on:
- icecast
volumes:
- ./config/icecast/ices2/ices-playlist.xml:/etc/ices2/ices-playlist.xml
- ./config/icecast/mymusic:/songs
restart: unless-stopped
networks:
- default
telegram:
build:
context: .
dockerfile: scripts/telegramBot/docker/Dockerfile
container_name: telegram
volumes:
- ./src/nginx/webpages/videos/hls:/videos
- ./config/icecast/mymusic:/songs
restart: unless-stopped
networks:
- default
networks:
default:
driver: bridge