mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-03-10 17:28:49 +01:00
16 lines
488 B
YAML
16 lines
488 B
YAML
# SPDX-FileCopyrightText: 2025 Gergely Nagy
|
|
# SPDX-FileContributor: Gergely Nagy
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
services:
|
|
iocaine:
|
|
image: git.madhouse-project.org/iocaine/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"]
|