-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
71 lines (67 loc) · 1.77 KB
/
docker-compose.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
version: '3'
services:
packagemate-server:
build:
context: api_server
dockerfile: Dockerfile
image: packagemate-server
container_name: packagemate-server
restart: unless-stopped
env_file: .env
environment:
- MONGO_USERNAME=$MONGO_USERNAME
- MONGO_PASSWORD=$MONGO_PASSWORD
- MONGO_HOSTNAME=db
- MONGO_PORT=$MONGO_PORT
- MONGO_DB=$MONGO_DB
- UPS_ACCESS_KEY=$UPS_ACCESS_KEY
- USPS_USERNAME=$USPS_USERNAME
networks:
- app-network
# this will work as long as you haven't changed the mongodb port from the default
# if you have, change it here as well
command: ./wait-for.sh db:27017 -- npm start
packagemate-client:
build:
context: client
dockerfile: Dockerfile
image: packagemate-client
container_name: packagemate-client
restart: unless-stopped
env_file: .env
depends_on:
- packagemate-server
- db
environment:
- MONGO_USERNAME=$MONGO_USERNAME
- MONGO_PASSWORD=$MONGO_PASSWORD
- MONGO_HOSTNAME=db
- MONGO_PORT=$MONGO_PORT
- MONGO_DB=$MONGO_DB
- UPS_ACCESS_KEY=$UPS_ACCESS_KEY
- USPS_USERNAME=$USPS_USERNAME
ports:
# this is the port of the main app, by default, port 80 is
# exposed on the host machine (localhost or 127.0.0.1)
- "80:3000"
networks:
- app-network
command: npm start
stdin_open: true
db:
image: mongo:4.1.8-xenial
container_name: db
restart: unless-stopped
env_file: .env
environment:
- MONGO_INITDB_ROOT_USERNAME=$MONGO_USERNAME
- MONGO_INITDB_ROOT_PASSWORD=$MONGO_PASSWORD
volumes:
- dbdata:/data/db
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
dbdata: