2026-03-16 23:49:54 +00:00
|
|
|
services:
|
|
|
|
|
convertx:
|
|
|
|
|
image: ghcr.io/c4illin/convertx
|
|
|
|
|
container_name: convertx
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "3053:3000"
|
|
|
|
|
environment:
|
|
|
|
|
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
|
|
|
|
|
# - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
|
2026-03-16 23:51:59 +00:00
|
|
|
#- ACCOUNT_REGISTRATION=false
|
|
|
|
|
#- ALLOW_UNAUTHENTICATED=faslse #Allow unauthenticated users to use the service, only set this to true locally
|
2026-03-16 23:49:54 +00:00
|
|
|
volumes:
|
|
|
|
|
- srv/docker/convertx/data:/app/data
|