1services:
2 server:
3 image: kutt/kutt:latest
4 volumes:
5 - db_data_sqlite:/var/lib/kutt
6 - custom:/kutt/custom
7 environment:
8 DB_FILENAME: "/var/lib/kutt/data.sqlite"
9 REDIS_ENABLED: true
10 REDIS_HOST: redis
11 REDIS_PORT: 6379
12 JWT_SECRET: 0F5B2J0CcoaFIDehV14ngwd6Lp2YbyJM7YeFVkILB1 #random string of characters
13 DEFAULT_DOMAIN: yourwebsite.com #no http or https
14 ports:
15 - 3000:3000
16 depends_on:
17 redis:
18 condition: service_started
19 redis:
20 image: redis:alpine
21 restart: always
22 expose:
23 - 6379
24volumes:
25 db_data_sqlite:
26 custom:
Created: Wed, 22 Jan 2025 19:50:41 +0000
Expires: Never