Skip to content

Commit

Permalink
chore: update leantime
Browse files Browse the repository at this point in the history
  • Loading branch information
l4rm4nd authored Nov 22, 2024
1 parent 42e53f6 commit e25395c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions examples/leantime/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

leantime_db:
image: mysql:8.0
image: mysql:8.4
container_name: leantime-mysql
expose:
- 3306
Expand All @@ -11,7 +11,7 @@ services:
env_file: ./.env
command: --character-set-server=UTF8MB4 --collation-server=UTF8MB4_unicode_ci
#networks:
# - proxy
# - internal

leantime:
image: leantime/leantime:latest
Expand All @@ -21,14 +21,16 @@ services:
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/public_data:/var/www/html/public/userfiles
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/data:/var/www/html/userfiles
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/plugins:/var/www/html/app/Plugins
ports:
- "8080:80" # The port to expose and access Leantime
expose:
- 80
depends_on:
- leantime_db # Don't start Leantime unless leantime_db is running
- leantime_db
#networks:
# - proxy
# - internal
#labels:
# - traefik.enable=true
# - traefik.http.routers.leantime.rule=Host(`leantime.example.com`)
Expand All @@ -44,3 +46,5 @@ services:
#networks:
# proxy:
# external: true
# internal:
# internal: true

0 comments on commit e25395c

Please sign in to comment.