Hello everybody,
I’m relatively new to docker. I wanted to create a Leantime Docker and therefore have set up a docker-compose file which looks like this:
version: '3.3'
services:
db:
image: mysql:5.7
container_name: mysql_leantime
volumes:
- /opt/Docker/Leantime/db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: '321.qwerty'
MYSQL_DATABASE: 'leantime'
MYSQL_USER: 'user'
MYSQL_PASSWORD: '321.qwerty'
ports:
- "3306:3306"
command: --character-set-server=utf8 --collation-server=utf8_unicode_ci
web:
image: leantime/leantime:latest
container_name: leantime
environment:
LEAN_DB_HOST: 'db'
LEAN_DB_USER: 'user'
LEAN_DB_PASSWORD: '321.qwerty'
LEAN_DB_DATABASE: 'leantime'
ports:
- "9000:9000"
depends_on:
- db
volumes:
db_data:
When I start the Compose the installation process succedes and the db_data folder gets created. So I assume, it works. BUT my problem is, that I cannot access the WebGUI. Do I miss something? Did I forget to install or do something?
I doubt that it’s a network problem because I already run gitea via docker and it works just fine.