lollms/docker-compose.yaml

14 lines
209 B
YAML
Raw Normal View History

2023-10-15 00:27:30 +00:00
version: '3'
services:
lollms:
build:
context: .
dockerfile: Dockerfile
args:
2024-05-13 16:48:15 +00:00
- BASE_IMAGE=python:3.11
2023-10-15 00:27:30 +00:00
ports:
- 9601:9601
volumes:
- ./data:/app/data
2024-05-13 16:48:15 +00:00