diff --git a/docker-leantime/docker-compose.yml b/docker-leantime/docker-compose.yml deleted file mode 100644 index 6cb1252..0000000 --- a/docker-leantime/docker-compose.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: '3.3' - -services: - leantime_db: - image: mysql:5.7 - container_name: mysql_leantime - volumes: - - db_data:/var/lib/mysql - restart: always - environment: - MYSQL_ROOT_PASSWORD: '321.qwerty' - MYSQL_DATABASE: 'leantime' - MYSQL_USER: 'admin' - MYSQL_PASSWORD: '321.qwerty' - command: --character-set-server=utf8 --collation-server=utf8_unicode_ci - - leantime: - image: leantime/leantime:latest - container_name: leantime - environment: - LEAN_APP_URL: 'https://leantime.tyrel.pw' #Base URL, trailing slash not needed (Optional) - LEAN_SITENAME: 'Leantime' #Name of your site, can be changed later - LEAN_USER_FILE_PATH: 'userfiles/' # When storing userfiles localy - LEAN_DB_HOST: 'mysql_leantime' - LEAN_DB_USER: 'admin' - LEAN_DB_PASSWORD: '321.qwerty' - LEAN_DB_DATABASE: 'leantime' - LEAN_DEFAULT_TIMEZONE: 'America/New_York' #Set default timezone - LEAN_SESSION_PASSWORD: 'BZupqR6Q663eUfP94PDF69yj9V$hnM#^qxM' #Salting sessions. Replace with a strong password - LEAN_SESSION_EXPIRATION: 28800 #How many seconds after inactivity should we logout? 28800seconds = 8hours - volumes: - - userfiles:/var/www/html/public/userfiles - ports: - - "22301:80" - depends_on: - - leantime_db - -volumes: - db_data: {} - userfiles: {}