f1ee116d3b
- app.md - backend/chat.go - Dockerfile - docker-compose.yml - traefik-dynamic.yml Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
23 lines
329 B
YAML
23 lines
329 B
YAML
name: kanban
|
|
|
|
services:
|
|
kanban:
|
|
build:
|
|
context: ../../
|
|
dockerfile: apps/kanban/Dockerfile
|
|
container_name: kanban
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8095:8095"
|
|
volumes:
|
|
- kanban_data:/data
|
|
networks:
|
|
- coolify
|
|
|
|
volumes:
|
|
kanban_data:
|
|
|
|
networks:
|
|
coolify:
|
|
external: true
|