14 lines
334 B
YAML
14 lines
334 B
YAML
services:
|
|
kiro-rs:
|
|
# Build locally from source instead of pulling from registry
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: kiro-rs
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "8990:8990"
|
|
volumes:
|
|
- ./config/:/app/config/
|
|
restart: unless-stopped |