File tree Expand file tree Collapse file tree 3 files changed +24
-9
lines changed
docker/pandoras-cluster-db Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ gradle-app.setting
5
5
! gradle-wrapper.jar
6
6
.gradletasknamecache
7
7
run /
8
+ ! /run /plugins /FastAsyncWorldEdit /
Original file line number Diff line number Diff line change 1
- version : ' 3.7 '
1
+ # docker compose up -d
2
2
services :
3
- keydb :
4
- image : eqalpha/keydb
3
+ postgres :
4
+ image : postgres
5
+ container_name : ' pandoras_cluster_postgresql'
5
6
ports :
6
- - " 6379:6379"
7
+ - 5432:5432
8
+ shm_size : 128mb
9
+ volumes :
10
+ - ./postgresql/data/:/var/lib/postgresql
11
+ environment :
12
+ POSTGRES_PASSWORD : pandoras_cluster
13
+ POSTGRES_USER : pandoras_cluster
14
+ POSTGRES_DB : pandoras_cluster
15
+ networks :
16
+ - pandoras_cluster_postgresql_go_net
17
+
18
+ networks :
19
+ pandoras_cluster_postgresql_go_net :
20
+ driver : bridge
Original file line number Diff line number Diff line change 35
35
tasks :
36
36
show-border-multiplier : 1
37
37
database :
38
- jdbcUrl : ' jdbc:mariadb ://localhost:3306/pandorascluster?useSSL=false '
39
- username : ' pandorascluster '
40
- password : ' CoTayoC4wIbu '
41
- driver : ' org.mariadb.jdbc .Driver'
42
- dialect : ' org.hibernate.dialect.MariaDBDialect '
38
+ jdbcUrl : ' jdbc:postgresql ://localhost:5432/pandoras_cluster '
39
+ username : ' pandoras_cluster '
40
+ password : ' pandoras_cluster '
41
+ driver : ' org.postgresql .Driver'
42
+ dialect : ' org.hibernate.dialect.PostgreSQLDialect '
You can’t perform that action at this time.
0 commit comments