Giter VIP home page Giter VIP logo

blessingskin-docker's Introduction

blessingskin-docker



Build blessingskin docker images every 7 days.

  • Platform: arm64, amd64

Source: https://github.com/bs-community/blessing-skin-server

Details

  • Build the image using the official Dockerfile
  • Build with the latest source code
  • Build with Github Action so you can check the logs at any time

Usage

Docker

docker run -it --rm purposely/blessingskin:latest

Docker Compose

version: '3.9'
services:
  blessingskin:
    image: purposely/blessingskin:latest
    restart: unless-stopped
    volumes:
      - ./blessingskin/data:/app/storage
      - ./blessingskin/database.db:/app/storage/database.db
      - ./blessingskin/env:/app/storage/.env:ro
      - ./blessingskin/plugins:/app/storage/plugins
      - ./blessingskin/sessions:/app/storage/framework/sessions
    ports:
      - '8080:80'
    environment:
      MAIL_HOST: smtp.office365.com
      MAIL_PORT: 465
      MAIL_USERNAME: MAIL_USERNAME
      MAIL_PASSWORD: MAIL_PASSWORD
      MAIL_FROM_ADDRESS: MAIL_FROM_ADDRESS
      MAIL_FROM_NAME: MAIL_FROM_NAME

  • Essential Steps
    1. Create/Mount .env file, example here.

      APP_DEBUG=false
      APP_ENV=production
      APP_FALLBACK_LOCALE=en
      
      DB_CONNECTION=sqlite
      DB_HOST=localhost
      DB_PORT=3306
      DB_DATABASE=/app/storage/database.db
      DB_USERNAME=username
      DB_PASSWORD=secret
      DB_PREFIX=
      
      # Hash Algorithm for Passwords
      #
      # Available values:
      # - BCRYPT, ARGON2I, PHP_PASSWORD_HASH
      # - MD5, SALTED2MD5
      # - SHA256, SALTED2SHA256
      # - SHA512, SALTED2SHA512
      #
      # New sites are *highly* recommended to use BCRYPT.
      #
      PWD_METHOD=BCRYPT
      APP_KEY=base64:gw4mJ1NxyIPnCYSWIhWvyfehylWu+iXwJn0PI91wmLM=
      
      MAIL_MAILER=smtp
      MAIL_HOST=
      MAIL_PORT=465
      MAIL_USERNAME=
      MAIL_PASSWORD=
      MAIL_ENCRYPTION=
      MAIL_FROM_ADDRESS=
      MAIL_FROM_NAME=
      
      CACHE_DRIVER=file
      SESSION_DRIVER=file
      QUEUE_CONNECTION=sync
      
      REDIS_CLIENT=phpredis
      REDIS_HOST=127.0.0.1
      REDIS_PASSWORD=null
      REDIS_PORT=6379
      
      PLUGINS_DIR=/app/storage/plugins
      PLUGINS_URL=null
    2. Create/Mount database.db file.

    3. Enjoy!

blessingskin-docker's People

Contributors

aocro avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.