Skip to content
Snippets Groups Projects
Jorrit Schaap's avatar
TMSS-146: use branch TMSS-146
Jorrit Schaap authored
f5b19f61
History
Code owners
Assign users and groups as approvers for specific file changes. Learn more.

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.