mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-23 20:12:08 +03:00
ede7e78bd6
* chore(docker-dev): ignore node_modules in the volume * chore(docker): fix wrong LEON_PORT env variable
15 lines
298 B
YAML
15 lines
298 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 start'
|