Tracks

Web-based application to help you implement David Allen’s Getting Things Done™ methodology.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3'
services:
  db:
    image: mysql:5.7
    environment:
      MYSQL_ALLOW_EMPTY_PASSWORD: 1
      MYSQL_DATABASE: ${TRACKS_DB:-tracks}
    volumes:
      - ./db-data:/var/lib/mysql
  web:
    build:
      context: .
      target: production # can also be development or test
    environment:
      # These are set in script/ci-build, so we need to pass-thru them.
      RAILS_ENV: $RAILS_ENV
      DATABASE_NAME: $DATABASE_NAME
      DATABASE_USERNAME: root
      DATABASE_PASSWORD_EMPTY: 1
    volumes:
      - ${VOLUME:-.}:/app:Z
      - ${VOLUME:-.}/config/database.docker.yml:/app/config/database.yml:Z
      - ${VOLUME:-.}/config/site.docker.yml:/app/config/site.yml:Z
    ports:
      - 3000:3000
    depends_on:
      - db

Resources

Website: https://www.getontracks.org/

GitHub: https://github.com/TracksApp/tracks

Docker Hub: https://hub.docker.com/r/tracksapp/tracks

Configuration: https://github.com/TracksApp/tracks/blob/v2.7.1/doc/installation.md