diff options
| author | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-04-18 00:41:21 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-04-18 00:41:21 +0200 |
| commit | 18fec5a866e82aea1be4829b5cd0e03a06b04223 (patch) | |
| tree | b49cfaa0d58d75526d9b61219efd07f5d4568848 | |
| parent | df321f8795aca579b2371a4f350d63a9937d8879 (diff) | |
ci(docker): add volume to store data for postgres in compose
| -rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 280805a..ba5c537 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,4 +13,6 @@ services: postgres: image: postgres:alpine env_file: - - .env
\ No newline at end of file + - .env + volumes: + - ./data:/var/lib/postgresql/data
\ No newline at end of file |
