-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 963 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 963 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
version: '3'
services:
nginx:
image: bitnami/nginx
restart: always
volumes:
- ./nginx/conf/private/server_block.conf:/opt/bitnami/nginx/conf/server_blocks/my_server_block.conf:ro
- ./certs:/certs
ports:
- "80:8080"
- "443:8443"
networks:
- app-network
inspircd:
image: fishnet/inspircd:latest
restart: always
volumes:
- ./inspircd/conf:/inspircd/conf
ports:
- "6697:6697"
networks:
- app-network
thelounge:
image: fishnet/thelounge:latest
restart: always
volumes:
- ./thelounge/conf/public/config.js:/thelounge/.thelounge/config.js
- ./thelounge/conf/private:/thelounge/.thelounge/private
- ./thelounge/conf/public/themes:/thelounge/thelounge/public/themes
ports:
- "9000:9000"
networks:
- app-network
networks:
app-network:
driver: bridge
ipam:
config:
- subnet: "172.50.0.0/16"