iocaine/data/compose.yaml
Gergely Nagy 7b2e472e35
Major documentation update
This adds plenty of documentation: describing what iocaine is, how it
does what it does, and how to deploy it in various scenarios.

Not complete yet, but reasonably detailed nevertheless.

Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
2025-01-16 23:44:57 +01:00

16 lines
486 B
YAML

# SPDX-FileCopyrightText: 2025 Gergely Nagy
# SPDX-FileContributor: Gergely Nagy
#
# SPDX-License-Identifier: MIT
services:
iocaine:
image: git.madhouse-project.org/algernon/iocaine:latest
restart: unless-stopped
ports:
- '127.0.0.1:42069:42069'
volumes:
- ./container-volume:/data
environment:
- IOCAINE_SERVER__BIND="0.0.0.0:42069"
- IOCAINE_SOURCES__WORDS="/data/wordlist.txt"
- IOCAINE_SOURCES__MARKOV=["/data/training-text.txt"]