ente/cli/docker-compose.yml
2024-06-06 08:51:12 +05:30

15 lines
568 B
YAML

version: '3'
services:
ente-cli:
image: ente-cli:latest
command: /bin/sh
volumes:
# This is mandatory to mount the local directory to the container at /cli-data
# CLI will use this directory to store the data required for syncing export
- /path/to/local/directory/cli/:/cli-data:rw
# You can add additional volumes to mount the export directory to the container
# While adding account for export, you can use /data as the export directory.
- /path/to/local/directory/export:/data:rw
stdin_open: true
tty: true