12 lines
236 B
YAML
12 lines
236 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
db:
|
|
image: docker.andr3h3nriqu3s.com/services/postgres
|
|
command: -c 'max_connections=400'
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: verysafepassword
|
|
ports:
|
|
- "5432:5432"
|