1
0
Fork 0
Advent-of-Code/2017/docker-compose.yml

20 lines
376 B
YAML

version: "3.9"
services:
postgres:
image: postgres:15
container_name: "aoc-2017-postgres"
ports:
- "127.0.0.1:2017:5432"
volumes:
- postgres:/var/lib/postgresql/data
- .:/aoc:ro
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: aoc2017
POSTGRES_DB: postgres
volumes:
postgres:
name: "aoc-2017-postgres"