1services: 2 app: 3 image: oven/bun:latest 4 container_name: kcia 5 working_dir: /app 6 volumes: 7 - .:/app 8 command: sh -c "bun install && bun --bun ./src/index.js" 9 restart: unless-stopped 10 ports: 11 - "127.0.0.1:5242:5242"