Defined top level name for all services Added proxy-net to services Updated main service/server container service name to "app" Updated hostname references to projectname-app-1 Updated docker Caddy caddyfile to reference container names Updated docker Caddy caddyfile to use 192.168.1.234 instead of localhost for non-docker services Adjusted caddyfile accordingly
16 lines
269 B
YAML
16 lines
269 B
YAML
name: requestrr
|
|
services:
|
|
app:
|
|
image: thomst08/requestrr
|
|
networks:
|
|
- proxy-net
|
|
ports:
|
|
- "4545:4545"
|
|
volumes:
|
|
- ./config:/root/config
|
|
- ./data/tmp:/root/config/tmp
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
proxy-net:
|
|
external: true |