19 lines
373 B
YAML
19 lines
373 B
YAML
networks:
|
|
proxy-network:
|
|
external: true
|
|
|
|
services:
|
|
convertx:
|
|
image: ghcr.io/c4illin/convertx
|
|
container_name: convertx
|
|
networks:
|
|
- proxy-network
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:6000:3000"
|
|
environment:
|
|
#- JWT_SECRET=longSecretOrRandomUUIDWhenUnset
|
|
- HTTP_ALLOWED=false
|
|
volumes:
|
|
- ./data:/app/data
|