Skip to content

Commit e25395c

Browse files
authored
chore: update leantime
1 parent 42e53f6 commit e25395c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

examples/leantime/docker-compose.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22

33
leantime_db:
4-
image: mysql:8.0
4+
image: mysql:8.4
55
container_name: leantime-mysql
66
expose:
77
- 3306
@@ -11,7 +11,7 @@ services:
1111
env_file: ./.env
1212
command: --character-set-server=UTF8MB4 --collation-server=UTF8MB4_unicode_ci
1313
#networks:
14-
# - proxy
14+
# - internal
1515

1616
leantime:
1717
image: leantime/leantime:latest
@@ -21,14 +21,16 @@ services:
2121
volumes:
2222
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/public_data:/var/www/html/public/userfiles
2323
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/data:/var/www/html/userfiles
24+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/leantime/plugins:/var/www/html/app/Plugins
2425
ports:
2526
- "8080:80" # The port to expose and access Leantime
2627
expose:
2728
- 80
2829
depends_on:
29-
- leantime_db # Don't start Leantime unless leantime_db is running
30+
- leantime_db
3031
#networks:
3132
# - proxy
33+
# - internal
3234
#labels:
3335
# - traefik.enable=true
3436
# - traefik.http.routers.leantime.rule=Host(`leantime.example.com`)
@@ -44,3 +46,5 @@ services:
4446
#networks:
4547
# proxy:
4648
# external: true
49+
# internal:
50+
# internal: true

0 commit comments

Comments
 (0)