diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:03:35 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:03:35 -0800 |
| commit | fb7d5bfb0b780486d3b6191dda7c0a340abe286e (patch) | |
| tree | 8b81f60f0bf7c97fa96f85816f9abd89fc82d15d /docker-compose.yaml | |
| parent | ddcbfc92b9c7b1c932c4bdcadf393b95aa0adc0c (diff) | |
| download | neko-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.yaml | 11 |
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: |
