Archived
0
0
Fork 0
This repository has been archived on 2024-05-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
nextrip/docker-compose.yml
2018-05-24 21:09:29 -05:00

12 lines
No EOL
244 B
YAML

version: '3.3'
services:
postgres-server:
image: postgres:alpine
volumes:
- ./Data Load:/docker-entrypoint-initdb.d
restart: always
container_name: Dev-PostgreSQL
expose:
- "5432"
ports:
- "5432:5432"