tsunagatteru / ishiki-no-nagare

Blogging engine prototype

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

}

About

Blogging engine prototype


Languages

Language:Go 77.1%Language:CSS 21.3%Language:Dockerfile 1.6%