You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

16 lines
372 B

version: "3.4"
services:
postgres:
container_name: postgres
image: postgres:13.4
restart: unless-stopped
ports:
- <host-ip-address>:5432:5432
volumes:
- pgdata:/var/lib/postgresql/data
environment:
POSTGRES_USER: <user>
POSTGRES_PASSWORD: <password>
volumes:
pgdata: