mirror of
https://github.com/Luzifer/ots.git
synced 2025-12-27 13:54:31 -05:00
24 lines
629 B
YAML
24 lines
629 B
YAML
version: "3.8"
|
|
services:
|
|
app:
|
|
build:
|
|
context: https://github.com/Luzifer/ots.git#v1.19.1
|
|
restart: always
|
|
environment:
|
|
# Optional, see "Customization" in README
|
|
#CUSTOMIZE: '/etc/ots/customize.yaml'
|
|
# See README for details
|
|
REDIS_URL: redis://redis:6379/0
|
|
# 168h = 1w
|
|
SECRET_EXPIRY: "604800"
|
|
# "mem" or "redis" (See README)
|
|
STORAGE_TYPE: redis
|
|
depends_on:
|
|
- redis
|
|
ports:
|
|
- 3000:3000
|
|
redis:
|
|
image: redis:alpine@sha256:59b6e694653476de2c992937ebe1c64182af4728e54bb49e9b7a6c26614d8933
|
|
restart: always
|
|
volumes:
|
|
- ./data:/data
|