Let’s reduce the length of your URLs with Kutt – Still monitor traffic

Check out the Docker Composse used in this video

services:

  server:

    image: kutt/kutt:latest

    restart: always

    volumes:

      – db_data_sqlite:/var/lib/kutt

      – custom:/kutt/custom

    environment:

      DB_FILENAME: “/var/lib/kutt/data.sqlite”

      REDIS_ENABLED: true

      REDIS_HOST: redis

      REDIS_PORT: 6379

      JWT_SECRET: change-me #random string of characters

      DEFAULT_DOMAIN: yourwebsite.com #no http or https

    ports:

      – 3000:3000

    depends_on:

      redis:

        condition: service_started

  redis:

    image: redis:alpine

    restart: always

    expose:

      – 6379

volumes:

  db_data_sqlite:

  custom:

Leave a Comment

Your email address will not be published. Required fields are marked *