feat: add initial docker-compose configuration for convertx service
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
parent
ea8aa585d9
commit
98fa59e6aa
26
nodes/heimdall/convertx/compose.yaml
Normal file
26
nodes/heimdall/convertx/compose.yaml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# docker-compose.yml
|
||||||
|
services:
|
||||||
|
convertx:
|
||||||
|
image: ghcr.io/c4illin/convertx
|
||||||
|
container_name: convertx
|
||||||
|
networks:
|
||||||
|
- proxy-net
|
||||||
|
restart: unless-stopped
|
||||||
|
# ports:
|
||||||
|
# - "3000:3000"
|
||||||
|
environment:
|
||||||
|
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
|
||||||
|
# - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
|
||||||
|
volumes:
|
||||||
|
- /mnt/appdata/convertx/data:/app/data
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.routers.convertx.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.convertx.rule=Host(`convertx.castaldifamily.com`)"
|
||||||
|
- "traefik.http.routers.convertx.tls=true"
|
||||||
|
- "traefik.http.routers.convertx.tls.certresolver=cloudflare"
|
||||||
|
- "traefik.http.services.convertx.loadbalancer.server.port=3000"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy-net:
|
||||||
|
external: true
|
||||||
Loading…
x
Reference in New Issue
Block a user