This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/docker-compose.yml
2022-11-24 20:25:07 -05:00

16 lines
339 B
YAML

version: "3"
services:
db:
image: postgres:9.6
restart: always
environment:
- POSTGRES_USER=birdsitelive
- POSTGRES_PASSWORD=birdsitelive
- POSTGRES_DB=birdsitelive
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- "5432:5432"