ente/cli/docker-compose.yml
Johannes7k75 7d0ae17ddd
Update README.md (#3023)
## Description

Changes the name of the docker image that gets build.

## Tests
2024-09-03 15:55:48 +05:30

17 lines
595 B
YAML

services:
ente-cli:
build:
context: .
tags:
- 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