Skip to content

Commit

Permalink
chore: Removed deprecated property from docker-compose file.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomenezes committed Aug 22, 2024
1 parent 681f0fb commit 9d2ff80
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions docker-compose-db.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
version: "3"

services:
db:
image: postgres:15
environment:
POSTGRES_DB: squid
POSTGRES_PASSWORD: postgres
ports:
- "${DB_PORT}:5432"
# command: ["postgres", "-c", "log_statement=all"]
shm_size: 1gb
db:
image: postgres:15
environment:
POSTGRES_DB: squid
POSTGRES_PASSWORD: postgres
ports:
- '${DB_PORT}:5432'
# command: ["postgres", "-c", "log_statement=all"]
shm_size: 1gb

0 comments on commit 9d2ff80

Please sign in to comment.