Skip to content

Commit 5be19eb

Browse files
authored
refactor: Change PostgreSQL volume mount path in docker-compose (#44)
* refactor: Change PostgreSQL volume mount path in docker-compose Updated volume mount path for PostgreSQL in docker-compose. * nits
1 parent 2c9b976 commit 5be19eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ services:
1313
restart: always
1414
ports:
1515
- 127.0.0.1:${DB_PORT}:${DB_PORT}
16-
# Uncomment volumes below to persist postgres data. Make sure to change directory to store data locally
16+
# Uncomment volumes below to persist PostgreSQL data. Make sure to change the directory to store data locally
1717
# volumes:
18-
# - /My/Encrypted/Drive/data:/var/lib/postgresql/data #Mount your own drive
18+
# - /My/Encrypted/Drive/data:/var/lib/postgresql/18/docker #Mount your own drive, be sure to change 18 to your respective postgres version
1919
# - /My/Encrypted/Drive/archivedir:/var/lib/postgresql/archivedir #Mount your own drive
2020
monitor:
2121
image: percona/pmm-server:2
2222
restart: always
2323
ports:
2424
- 127.0.0.1:1080:${PMM_PORT} # Unsecure connections
2525
- 127.0.0.1:1443:${PMM_TLS_PORT} # Secure connections
26-
# Uncomment volumes below to persist postgres data. Make sure to change directory to store data locally
26+
# Uncomment volumes below to persist monitor data. Make sure to change the directory to store data locally
2727
# volumes:
2828
# - /My/Encrypted/Drive/srv:/srv

0 commit comments

Comments
 (0)