fertkir / lwt

Learning with Texts Dockerized

Home Page:https://sourceforge.net/projects/learning-with-texts/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Learning with Texts Dockerized

https://sourceforge.net/projects/learning-with-texts/

License:The Unlicense


Languages

Language:PHP 73.2%Language:JavaScript 14.4%Language:HTML 10.0%Language:CSS 2.4%Language:Dockerfile 0.0%