This is a synchronization server for Octi
./gradlew clean installDistThe binaries you can copy to a server will be placed under ./build/install/octi-server.
More details here.
./build/install/octi-server/bin/octi-server --datapath=./octi-dataThe following flags are available:
--datapath(required) where the server should store its data--debugto enable additional log output--portto change the default port (8080)
The default data volume is /etc/octi-server.
docker run -v octi-data:/etc/octi-server -p 8080:8080 ghcr.io/d4rken-org/octi-serverEnvironment variables:
OCTI_PORT— server port (default: 8080)OCTI_DEBUG— enable debug mode (default: false)OCTI_DATA_DIR— override data directory path
Migrating from /etc/octi-sync-server: The old volume path is still detected automatically. Update your mount to /etc/octi-server when convenient, or set OCTI_DATA_DIR explicitly.