I've got a test installation of Titra on a local system, and I've got it answering http on port 80 with this docker-compose file:
version: "2.0"
services:
titra:
image: kromit/titra
container_name: titra
depends_on:
- mongodb
environment:
- ROOT_URL=http://timesheet
- MONGO_URL=mongodb://mongodb/titra
- PORT=3000
ports:
- "80:3000"
restart: always
mongodb:
image: mongo:4.4
container_name: mongodb
restart: always
volumes:
- /root/titradb:/data/db
That works, but I'd kind of like the thing to answer https instead, but I'm not that familiar with Titra itself, nor Meteor (the framework it's written in), and my poking around the available documentation hasn't turned up anything about https for self-hosted Titra instances.