Skip to content

fertkir/lwt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation:

  1. Download docker-compose.yaml:
# docker-compose.yml

version: "3"

services:
  lwt:
    image: ghcr.io/fertkir/lwt:main
    restart: unless-stopped
    ports:
      - "8080:80"
  db:
    image: mariadb:10.11
    restart: unless-stopped
    command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
    volumes:
      - db:/var/lib/mysql
    environment:
      - MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=yes
volumes:
  db:
  1. Run docker compose up -d in the directory with docker-compose.yaml.
  2. Open http://localhost:8080 in a browser.