Skip to content

tsunagatteru/ishiki-no-nagare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ishiki-no-nagare

Installation with docker

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}/;
    }

}