1
0
mirror of https://github.com/kongyew/greenplum-oss-docker synced 2020-06-03 18:44:52 +00:00
greenplum-oss-docker/usecase1/docker-compose.yml
2018-11-20 12:11:20 -08:00

32 lines
676 B
YAML

version: '2'
services:
gpdb5:
#build:
# context: .
# dockerfile: ./gpdb/Dockerfile
image: "kochanpivotal/gpdb5oss"
command: bin/bash
hostname: "gpdbsne"
container_name: gpdbsne
ports:
- "5432:5432"
- "5005:5005"
- "5010:5010"
- "9022:22"
- "40000:40000"
- "40001:40001"
- "40002:40002"
expose:
- "5432"
volumes:
- ..:/code
tty: true
networks:
mynetwork:
aliases:
- gpdbsne
- gpdbsne.localdomain.com
networks:
mynetwork:
driver: bridge