Skip to content

Commit

Permalink
fix(docker): added volume mount name
Browse files Browse the repository at this point in the history
  • Loading branch information
dylhack committed May 16, 2022
1 parent 3168c64 commit 6f8d67d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
- POSTGRES_PASSWORD=supersecurepassword
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- /var/lib/postgresql/data/pgdata
- "boolean-data:/var/lib/postgresql/data/pgdata"
boolean:
build: .
restart: always
links:
- postgres
volumes:
boolean-data: {}

0 comments on commit 6f8d67d

Please sign in to comment.