1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-08-16 21:50:33 +03:00
leon/docker-compose.dev.yml

18 lines
381 B
YAML

version: '3.0'
services:
leon-ai:
container_name: 'leon-ai'
build:
context: './'
image: 'leonai/leon'
ports:
- '${LEON_PORT:-1337}:${LEON_PORT:-1337}'
environment:
LEON_PORT: ${LEON_PORT:-1337}
stdin_open: true
tty: true
command: 'npm run dev:server && npm run dev:app'
volumes:
- './:/app'
- '/app/node_modules'