To build:
docker build -t tmss-postgres tmss-postgres
docker build -t tmss [--build-arg BRANCH=TMSS-epic] [--build-arg UID=`id -u`] tmss
To start the PostgreSQL container:
docker run [-it] --name=postgres-$USER --rm tmss-postgres
To start the TMSS container (exposing port 8001 to surf to) AND TMSS app:
docker run [-it] --rm -p 0.0.0.0:8001:8000 --link=postgres-$USER:postgres tmss
To start the TMSS container (exposing port 8001 to surf to) for debugging/testing:
docker run -it --rm -p 0.0.0.0:8001:8000 --link=postgres-$USER:postgres tmss bash
Note: "-it" allows one to abort the container with ^C.