This repository was archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (63 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
69 lines (63 loc) · 1.38 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
version: '2.1'
services:
# fxa-content-server
fxa-content-web:
command: node server/bin/fxa-content-server.js
environment:
NODE_ENV: "development"
HOST: "0.0.0.0"
EXPERIMENTS_ENABLE_POLLING: 'false'
EXPERIMENTS_GIT_REPO: ""
image: mozilla/fxa-content-server
ports:
- "3030:3030"
# fxa-oauth-server
oauth-web:
command: node bin/server.js
environment:
NODE_ENV: "dev"
HOST: "0.0.0.0"
image: mozilla/fxa-oauth-server
ports:
- "9010:9010"
# fxa-auth-db-mysql
auth-db-mysql:
command: node bin/mem.js
environment:
HOST: "0.0.0.0"
image: mozilla/fxa-auth-db-mysql
ports:
- "8000:8000"
# fxa-profile-server
profile-web:
command: node scripts/run_dev.js
environment:
HOST: "0.0.0.0"
WORKER_HOST: "0.0.0.0"
image: mozilla/fxa-profile-server
ports:
- "1111:1111"
- "1112:1112"
- "1113:1113"
# fxa-customs-server
customs:
command: node bin/customs_server.js
environment:
IP_ADDRESS: "0.0.0.0"
image: mozilla/fxa-customs-server
ports:
- "7000:7000"
# mysql 5.6
mysql:
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: fxa
MYSQL_USER: root
image: mysql:5.6
ports:
- "3306:3306"
volumes:
db_data: