-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker_error.log
More file actions
83 lines (83 loc) · 1.86 KB
/
docker_error.log
File metadata and controls
83 lines (83 loc) · 1.86 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: graphrank-recommendation-engine
services:
api:
build:
context: C:\Users\Ynez Dias\OneDrive\Desktop\GraphRank-Recommendation-Engine
dockerfile: Dockerfile
depends_on:
postgres:
condition: service_started
required: true
redis:
condition: service_started
required: true
deploy:
replicas: 3
environment:
DB_HOST: postgres
REDIS_HOST: redis
networks:
default: null
nginx:
depends_on:
api:
condition: service_started
required: true
image: nginx:alpine
networks:
default: null
ports:
- mode: ingress
target: 80
published: "8000"
protocol: tcp
volumes:
- type: bind
source: C:\Users\Ynez Dias\OneDrive\Desktop\GraphRank-Recommendation-Engine\nginx.conf
target: /etc/nginx/nginx.conf
read_only: true
bind: {}
postgres:
container_name: graphrank_postgres
environment:
POSTGRES_DB: graphrank
POSTGRES_PASSWORD: admin
POSTGRES_USER: admin
image: postgres:15
networks:
default: null
ports:
- mode: ingress
target: 5432
published: "5432"
protocol: tcp
redis:
container_name: graphrank_redis
image: redis:7
networks:
default: null
ports:
- mode: ingress
target: 6379
published: "6379"
protocol: tcp
spark:
command:
- /opt/spark/bin/spark-class
- org.apache.spark.deploy.master.Master
container_name: graphrank_spark
image: apache/spark:3.5.1
networks:
default: null
ports:
- mode: ingress
target: 8080
published: "8080"
protocol: tcp
- mode: ingress
target: 7077
published: "7077"
protocol: tcp
networks:
default:
name: graphrank-recommendation-engine_default