This repository was archived by the owner on Mar 6, 2023. It is now read-only.
forked from ravens/docker-openairinterface-epc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (66 loc) · 1.35 KB
/
Copy pathdocker-compose.yml
File metadata and controls
67 lines (66 loc) · 1.35 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
version: '2'
services:
db:
image: mysql
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=linux
domainname: openair4G.eur
hostname: db
volumes:
- /etc/oai-docker-conf/oai_db.sql:/docker-entrypoint-initdb.d/oai_db.sql
phpmyadmin:
image: phpmyadmin/phpmyadmin
links:
- db:db
ports:
- 8080:80
environment:
- MYSQL_ROOT_PASSWORD=linux
- MYSQL_USER=linux
- MYSQL_PASSWORD=linux
hss:
build: hss
links:
- db:db.openair4G.eur
networks:
default:
epc:
ipv4_address: 10.0.5.101
domainname: openair4G.eur
hostname: hss
volumes:
- /etc/oai-docker-conf:/usr/local/etc/oai
mme:
build: mme
links:
- hss:hss.openair4G.eur
networks:
epc:
ipv4_address: 10.0.5.102
domainname: openair4G.eur
hostname: mme
volumes:
- /etc/oai-docker-conf:/usr/local/etc/oai
spgw:
build: spgw
links:
- hss:hss.openair4G.eur
networks:
epc:
ipv4_address: 10.0.5.103
privileged: true
domainname: openair4G.eur
hostname: spgw
volumes:
- /lib/modules:/lib/modules
- /etc/oai-docker-conf:/usr/local/etc/oai
networks:
epc:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.0.5.0/24
gateway: 10.0.5.1