Skip to content

Commit cd90ff6

Browse files
authored
[doctrine-bundle] make Docker volume name consistent (#1116)
1 parent a7a43cd commit cd90ff6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

doctrine/doctrine-bundle/1.12/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
3232
" POSTGRES_USER: ${POSTGRES_USER:-app}",
3333
" volumes:",
34-
" - db-data:/var/lib/postgresql/data:rw",
34+
" - database_data:/var/lib/postgresql/data:rw",
3535
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3636
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3737
],
38-
"volumes": ["db-data:"]
38+
"volumes": ["database_data:"]
3939
},
4040
"docker-compose.override.yml": {
4141
"services": [

doctrine/doctrine-bundle/1.6/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
3232
" POSTGRES_USER: ${POSTGRES_USER:-app}",
3333
" volumes:",
34-
" - db-data:/var/lib/postgresql/data:rw",
34+
" - database_data:/var/lib/postgresql/data:rw",
3535
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3636
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3737
],
38-
"volumes": ["db-data:"]
38+
"volumes": ["database_data:"]
3939
},
4040
"docker-compose.override.yml": {
4141
"services": [

doctrine/doctrine-bundle/2.0/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
3232
" POSTGRES_USER: ${POSTGRES_USER:-app}",
3333
" volumes:",
34-
" - db-data:/var/lib/postgresql/data:rw",
34+
" - database_data:/var/lib/postgresql/data:rw",
3535
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3636
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3737
],
38-
"volumes": ["db-data:"]
38+
"volumes": ["database_data:"]
3939
},
4040
"docker-compose.override.yml": {
4141
"services": [

doctrine/doctrine-bundle/2.3/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
3232
" POSTGRES_USER: ${POSTGRES_USER:-app}",
3333
" volumes:",
34-
" - db-data:/var/lib/postgresql/data:rw",
34+
" - database_data:/var/lib/postgresql/data:rw",
3535
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3636
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3737
],
38-
"volumes": ["db-data:"]
38+
"volumes": ["database_data:"]
3939
},
4040
"docker-compose.override.yml": {
4141
"services": [

doctrine/doctrine-bundle/2.4/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}",
3232
" POSTGRES_USER: ${POSTGRES_USER:-app}",
3333
" volumes:",
34-
" - db-data:/var/lib/postgresql/data:rw",
34+
" - database_data:/var/lib/postgresql/data:rw",
3535
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
3636
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
3737
],
38-
"volumes": ["db-data:"]
38+
"volumes": ["database_data:"]
3939
},
4040
"docker-compose.override.yml": {
4141
"services": [

0 commit comments

Comments
 (0)