# Setting up a Docker Development Environment This guide shows how to use native Docker for Mac to compile GPDB5 with your Mac’s folders mounted into a CentOS container. Although compiling GPDB5 on Mac is supported, Linux is required for some GPDB5 features like resource groups. These instructions should be applicable to any Docker host OS. We have seen it work on Mac OS X El Capitan and Ubuntu. ## Installing Docker for Mac OS X Follow instructions below and select Docker for Mac for native support. You must have OS X 10.10.3 Yosemite or newer. https://docs.docker.com/engine/installation/mac/ After installing, in Docker preferences, you may want to increase the CPUs/memory allocated to Docker. ## Pull and Run the Docker Image Note that the -v switch is used to mount the OS X’s gpdb folder into the container. The privileged and seccomp flags are used to allow gdb to work in Docker. ```bash docker run -t -v ~/workspace/gpdb:/home/gpadmin/gpdb_src --privileged --security-opt seccomp:unconfined -i pivotaldata/centos-gpdb-dev:7 bash ``` ## Set up Container Dependencies and the gpadmin User ***The following steps run inside the container*** ```bash pip install psutil lockfile # Set up gpadmin user and SSH cd /home/gpadmin gpdb_src/concourse/scripts/setup_gpadmin_user.bash echo "/usr/sbin/sshd" >> /root/.bashrc su - gpadmin cat >> ~/.bash_profile <> /root/.bashrc ``` ## Configure the GPDB Build Environment Run the `./configure` command as described in [README.md](README.md). NOTE: make sure that the gpdb folder on the Mac is clean, so that no object files get mounted into Docker! This can be done with `make distclean` or `git clean -xdff` (the latter will delete *all* untracked files, so be careful). ```bash su - gpadmin cd gpdb_src #or gpdb if you are using rsync ./configure --with-perl --with-python --with-libxml --disable-orca --prefix=/home/gpadmin/gpdb_install ``` ## Commit the Container (optional) Exit the docker container and run the below from the host machine: ```bash docker ps -a #copy the container name and rename to gpdb (any name is okay) docker rename gpdb #this will save base image if you ever mess up later on docker commit gpdb gpdb-image:base docker start gpdb docker attach gpdb ``` ## Creating Multiple Login Sessions to the Container Note that you can run `docker exec -i -t [container name] /bin/bash` to create additional login shells where `[container name]` can be found with `docker ps`. ## Compile and Install GPDB ```bash su - gpadmin cd ~/gpdb_src make -j8 all install ``` ## Starting a gpdemo Cluster Follow the below steps. If you are unable to psql in, try increasing your CPU and memory settings for docker to the max or disabling mirror segments in gpdemo's `clusterConfigFile`. ```bash su - gpadmin rm -rf /tmp/.s* #kill leftover lock files in case docker shutdown ungracefully cd ~/gpdb_src/gpAux/gpdemo source ~/gpdb_install/greenplum_path.sh make cluster source gpdemo-env.sh psql postgres ``` ### Running Regression Tests Note that the installcheck-world make target has at least 43 out of 401 failures, some of which are non-deterministic. ```bash su - gpadmin cd ~/gpdb_src make installcheck-world ```