Browse Source

feat: add compose file

master
bucde 3 years ago
parent
commit
155d52382e
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      docker-compose.yml

+ 15
- 0
docker-compose.yml View File

@ -0,0 +1,15 @@
version: "3.4"
services:
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:

Loading…
Cancel
Save