Files

24 lines
486 B
YAML
Raw Permalink Normal View History

version: "3.9"
services:
zesdex:
build:
context: .
dockerfile: Dockerfile
image: zesdex:latest
container_name: zesdex
volumes:
- zesdex-data:/data
- ./workspace:/workspace:ro
environment:
- ZESDEX_DATA_DIR=/data
- RUST_LOG=${RUST_LOG:-info}
stdin_open: true
tty: true
# For daemon mode, expose the IPC socket directory
# ports:
# - "127.0.0.1:${ZESDEX_PORT:-0}:${ZESDEX_PORT:-0}"
volumes:
zesdex-data: