aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 17:03:35 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 17:03:35 -0800
commitfb7d5bfb0b780486d3b6191dda7c0a340abe286e (patch)
tree8b81f60f0bf7c97fa96f85816f9abd89fc82d15d /docker-compose.yaml
parentddcbfc92b9c7b1c932c4bdcadf393b95aa0adc0c (diff)
downloadneko-fb7d5bfb0b780486d3b6191dda7c0a340abe286e.tar.gz
neko-fb7d5bfb0b780486d3b6191dda7c0a340abe286e.tar.bz2
neko-fb7d5bfb0b780486d3b6191dda7c0a340abe286e.zip
feat: add docker support and update readme (NK-kqt9oc)
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml11
1 files changed, 11 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000..85e6ee3
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,11 @@
+services:
+ neko:
+ build: .
+ ports:
+ - "8080:8080"
+ volumes:
+ - neko-data:/app/data
+ restart: unless-stopped
+
+volumes:
+ neko-data: