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:
|
2026-03-16 23:53:55 +00:00
|
|
|
- srv/docker/convertx/data:/app/data
|
|
|
|
|
networks:
|
|
|
|
|
- traefik_network
|
|
|
|
|
labels:
|
|
|
|
|
### Auto create icon on Flame dashboard
|
|
|
|
|
- flame.type=application
|
|
|
|
|
- flame.name=${SERVICE_NAME}
|
|
|
|
|
- flame.url=https://${SERVICE_NAME}.${DOMAIN_NAME}
|
|
|
|
|
- flame.icon=https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/convertx.png
|
|
|
|
|
### Enable Traefik
|
|
|
|
|
- traefik.enable=true
|
|
|
|
|
- traefik.docker.network=traefik_network
|
|
|
|
|
### For HTTP
|
|
|
|
|
#- traefik.http.routers.${SERVICE_NAME}.rule=Host(`${SERVICE_NAME}.${DOMAIN_NAME}`)
|
|
|
|
|
#- traefik.http.routers.${SERVICE_NAME}.entrypoints=web
|
|
|
|
|
### For HTTPS
|
|
|
|
|
- traefik.http.routers.${SERVICE_NAME}-https.tls=true
|
|
|
|
|
- traefik.http.routers.${SERVICE_NAME}-https.tls.certresolver=cloudflare
|
|
|
|
|
- traefik.http.routers.${SERVICE_NAME}-https.entrypoints=websecure
|
|
|
|
|
- traefik.http.routers.${SERVICE_NAME}-https.rule=Host(`${SERVICE_NAME}.${DOMAIN_NAME}`)
|
|
|
|
|
### Monitor with uptime-kuma
|
|
|
|
|
- kuma.monitoring.group.name=Docker Containers
|
|
|
|
|
- kuma.${SERVICE_NAME}.docker.parent_name=monitoring
|
|
|
|
|
- kuma.${SERVICE_NAME}.docker.name=${SERVICE_NAME}
|
|
|
|
|
- kuma.${SERVICE_NAME}.docker.type=docker
|
|
|
|
|
- kuma.${SERVICE_NAME}.docker.docker_container=${SERVICE_NAME}
|
|
|
|
|
- kuma.${SERVICE_NAME}.docker.docker_host=1
|
|
|
|
|
- 'kuma.${SERVICE_NAME}.docker.tag_names=[{"name": "docker_tag"}]'
|
|
|
|
|
networks:
|
|
|
|
|
traefik_network:
|
|
|
|
|
external: true
|