Install and start
docker run -d --restart=always -p <YOUR_PORT>:8080 -v <YOUR_DIR OR VOLUME>:/app/data --name inn ghcr.io/tsunagatteru/ishiki-no-nagare:latest
Then go to localhost:{YOUR_PORT}/admin with default credentials admin/admin and change them. After that you can reverse-proxy service with nginx
server {
listen 80;
server_name {YOUR DOMAIN};
location / {
proxy_http_version 1.0;
proxy_pass http://127.0.0.1:{YOUR PORT}/;
}
}