Docker

Install shinkro using its docker image

docker-compose.yml:

services:
  shinkro:
    container_name: shinkro
    image: ghcr.io/varoop/shinkro:latest
    restart: unless-stopped
    user: 1000:1000
    environment:
      - TZ=${TZ}
    volumes:
      - ${BASE_DOCKER_DATA_PATH}/shinkro/config:/config
    ports:
      - 7011:7011
  • Adjust the user with your user id if applicable.

  • Change volume path for your host system as required.

  • You may have to change the port mapping too if 7011 is not available on your host system.

  • Access shinkro on your local ip and configured port address to create your user account.

Last updated