File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ services :
2
+ redis :
3
+ image : redis:latest
4
+ container_name : redis
5
+ ports :
6
+ - " 6379:6379"
7
+ networks :
8
+ - backend
9
+
10
+
11
+ postgres :
12
+ image : postgres:latest
13
+ container_name : postgres
14
+ environment :
15
+ POSTGRES_USER : TEAM
16
+ POSTGRES_PASSWORD : DEV
17
+ POSTGRES_DB : SUPPORTIX
18
+ ports :
19
+ - " 5432:5432"
20
+ networks :
21
+ - backend
22
+ volumes :
23
+ - postgres_data:/var/lib/postgresql/data
24
+
25
+
26
+ networks :
27
+ backend :
28
+ driver : bridge
29
+
30
+ volumes :
31
+ postgres_data :
32
+ driver : local
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ billiard==4.2.1
9
9
celery == 5.5.2
10
10
cffi == 1.17.1
11
11
channels == 4.2.2
12
+ psycopg2 == 2.9.10
12
13
click == 8.1.8
13
14
click-didyoumean == 0.3.1
14
15
click-plugins == 1.1.1
You can’t perform that action at this time.
0 commit comments