fix(services/penpot): Added missing volume for penpot-postgres
This commit is contained in:
parent
c522f2aac4
commit
927ab2306d
1 changed files with 3 additions and 0 deletions
|
@ -100,6 +100,9 @@
|
||||||
penpot-postgres = {
|
penpot-postgres = {
|
||||||
image = "docker.io/postgres:15";
|
image = "docker.io/postgres:15";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
volumes = [
|
||||||
|
"penpot_postgres:/var/lib/postgresql/data"
|
||||||
|
];
|
||||||
environment = {
|
environment = {
|
||||||
POSTGRES_INITDB_ARGS = "--data-checksums";
|
POSTGRES_INITDB_ARGS = "--data-checksums";
|
||||||
POSTGRES_DB = "penpot";
|
POSTGRES_DB = "penpot";
|
||||||
|
|
Loading…
Reference in a new issue