17 lines
323 B
YAML
17 lines
323 B
YAML
services:
|
|
caddy-ui:
|
|
build: .
|
|
container_name: caddy-ui
|
|
ports:
|
|
- "800:3000"
|
|
environment:
|
|
- CADDY_API=http://caddy-hawkeye:2019
|
|
- URL=http://localhost:800
|
|
networks:
|
|
- caddy_network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
caddy_network:
|
|
external: true
|
|
name: caddy_network
|