Skip to content

Commit 787e4ad

Browse files
committed
rename service into to avoid conficts with doctrine
1 parent ced9674 commit 787e4ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

patchlevel/event-sourcing-bundle/3.0/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@
1818
"docker-compose": {
1919
"docker-compose.yml": {
2020
"services": [
21-
"database:",
21+
"eventstore:",
2222
" image: postgres:${POSTGRES_VERSION:-16}-alpine",
2323
" environment:",
2424
" POSTGRES_DB: ${POSTGRES_DB:-app}",
2525
" # You should definitely change the password in production",
2626
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
2727
" POSTGRES_USER: ${POSTGRES_USER:-app}",
2828
" volumes:",
29-
" - database_data:/var/lib/postgresql/data:rw",
29+
" - eventstore_data:/var/lib/postgresql/data:rw",
3030
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3131
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3232
],
33-
"volumes": ["database_data:"]
33+
"volumes": ["eventstore_data:"]
3434
},
3535
"docker-compose.override.yml": {
3636
"services": [
37-
"database:",
37+
"eventstore:",
3838
" ports:",
3939
" - \"5432\""
4040
]

0 commit comments

Comments
 (0)