-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (38 loc) · 972 Bytes
/
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
version: "3.6"
services:
gifted_borg:
command:
- "node"
- "index.js"
container_name: "gifted_borg"
entrypoint:
- "docker-entrypoint.sh"
environment:
- "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- "NODE_VERSION=12.18.1"
- "YARN_VERSION=1.22.4"
- "NODE_ENV=production"
image: "se2team10/se2hiketracker:be"
network_mode: "bridge"
ports:
- "0.0.0.0:3001:3001/tcp"
tty: true
working_dir: "/app"
vibrant_antonelli:
command:
- "nginx"
- "-g"
- "daemon off;"
container_name: "vibrant_antonelli"
entrypoint:
- "/docker-entrypoint.sh"
environment:
- "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- "NGINX_VERSION=1.21.1"
- "NJS_VERSION=0.6.1"
- "PKG_RELEASE=1"
image: "se2team10/se2hiketracker:fe"
network_mode: "bridge"
ports:
- "0.0.0.0:8000:80/tcp"
tty: true