Change any port changes in docker-compose files to use expose and the default port instead of 3001:3000 Any localhost limited ports changed to expose instead Add requestrr to caddyfile
18 lines
302 B
YAML
18 lines
302 B
YAML
name: requestrr
|
|
services:
|
|
app:
|
|
image: thomst08/requestrr
|
|
networks:
|
|
- proxy-net
|
|
ports:
|
|
- "4545:4545"
|
|
expose:
|
|
- "4545"
|
|
volumes:
|
|
- ./config:/root/config
|
|
- ./data/tmp:/root/config/tmp
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
proxy-net:
|
|
external: true |