File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
patchlevel/event-sourcing-bundle/3.0 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
"docker-compose" : {
19
19
"docker-compose.yml" : {
20
20
"services" : [
21
- " database :" ,
21
+ " eventstore :" ,
22
22
" image: postgres:${POSTGRES_VERSION:-16}-alpine" ,
23
23
" environment:" ,
24
24
" POSTGRES_DB: ${POSTGRES_DB:-app}" ,
25
25
" # You should definitely change the password in production" ,
26
26
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}" ,
27
27
" POSTGRES_USER: ${POSTGRES_USER:-app}" ,
28
28
" volumes:" ,
29
- " - database_data :/var/lib/postgresql/data:rw" ,
29
+ " - eventstore_data :/var/lib/postgresql/data:rw" ,
30
30
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!" ,
31
31
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
32
32
],
33
- "volumes" : [" database_data :" ]
33
+ "volumes" : [" eventstore_data :" ]
34
34
},
35
35
"docker-compose.override.yml" : {
36
36
"services" : [
37
- " database :" ,
37
+ " eventstore :" ,
38
38
" ports:" ,
39
39
" - \" 5432\" "
40
40
]
You can’t perform that action at this time.
0 commit comments