Skip to content

Commit eb45358

Browse files
committed
Update gitignore for db files (#190)
1 parent 03fd047 commit eb45358

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,6 @@ certificates/letsencrypt/**
407407
docs/_site
408408
docs/vendor
409409
docs/.bundle
410+
411+
# Database files
412+
database/postgres

docker-compose.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
ports:
4444
- "5432:5432"
4545
volumes:
46-
- ./database:/var/lib/postgresql/data:rw
46+
- ./database/postgres:/var/lib/postgresql/data:rw
4747
environment:
4848
POSTGRES_DB: aliasvault
4949
POSTGRES_USER: aliasvault

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ services:
9191
postgres:
9292
image: ghcr.io/lanedirt/aliasvault-postgres:latest
9393
volumes:
94-
- ./database:/var/lib/postgresql/data:rw
94+
- ./database/postgres:/var/lib/postgresql/data:rw
9595
environment:
9696
POSTGRES_DB: aliasvault
9797
POSTGRES_USER: aliasvault

0 commit comments

Comments
 (0)