mirror of
https://github.com/wekan/wekan.git
synced 2026-03-05 21:30:17 +01:00
Update docker-compose configuration and dependencies
- Changed service from expose to ports for MongoDB. - Added user directive to run as root for file permissions. - Updated ROOT_URL to use a specific IP address. - Enabled DEBUG mode in environment variables. - Updated @babel/runtime version in package.json and package-lock.json.
This commit is contained in:
parent
20f91ef893
commit
e690b54bc6
3 changed files with 9 additions and 16 deletions
|
|
@ -105,8 +105,8 @@ services:
|
||||||
command: mongod --logpath /dev/null --oplogSize 128 --quiet
|
command: mongod --logpath /dev/null --oplogSize 128 --quiet
|
||||||
networks:
|
networks:
|
||||||
- wekan-tier
|
- wekan-tier
|
||||||
expose:
|
ports:
|
||||||
- 27017
|
- "27017:27017"
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- wekan-db:/data/db
|
- wekan-db:/data/db
|
||||||
|
|
@ -140,6 +140,7 @@ services:
|
||||||
#security_opt:
|
#security_opt:
|
||||||
# - seccomp:unconfined
|
# - seccomp:unconfined
|
||||||
restart: always
|
restart: always
|
||||||
|
user: "0:0" # Run as root to fix file permissions
|
||||||
networks:
|
networks:
|
||||||
- wekan-tier
|
- wekan-tier
|
||||||
#-------------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------------
|
||||||
|
|
@ -182,7 +183,7 @@ services:
|
||||||
# - http://example.com
|
# - http://example.com
|
||||||
# - http://boards.example.com
|
# - http://boards.example.com
|
||||||
# - http://192.168.1.100 <=== using at local LAN
|
# - http://192.168.1.100 <=== using at local LAN
|
||||||
- ROOT_URL=http://localhost # <=== using only at same laptop/desktop where Wekan is installed
|
- ROOT_URL=http://10.0.0.17 # <=== using only at same laptop/desktop where Wekan is installed
|
||||||
#---------------------------------------------------------------
|
#---------------------------------------------------------------
|
||||||
# ==== EMAIL SETTINGS ====
|
# ==== EMAIL SETTINGS ====
|
||||||
# Email settings are only at MAIL_URL and MAIL_FROM.
|
# Email settings are only at MAIL_URL and MAIL_FROM.
|
||||||
|
|
@ -373,7 +374,7 @@ services:
|
||||||
#- WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId
|
#- WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId
|
||||||
#-----------------------------------------------------------------
|
#-----------------------------------------------------------------
|
||||||
# ==== Debug OIDC OAuth2 etc ====
|
# ==== Debug OIDC OAuth2 etc ====
|
||||||
#- DEBUG=true
|
- DEBUG=true
|
||||||
#---------------------------------------------
|
#---------------------------------------------
|
||||||
# ==== AUTOLOGIN WITH OIDC/OAUTH2 ====
|
# ==== AUTOLOGIN WITH OIDC/OAUTH2 ====
|
||||||
# https://github.com/wekan/wekan/wiki/autologin
|
# https://github.com/wekan/wekan/wiki/autologin
|
||||||
|
|
|
||||||
14
package-lock.json
generated
14
package-lock.json
generated
|
|
@ -5,12 +5,9 @@
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": {
|
"@babel/runtime": {
|
||||||
"version": "7.26.10",
|
"version": "7.28.2",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.10.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.2.tgz",
|
||||||
"integrity": "sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==",
|
"integrity": "sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA=="
|
||||||
"requires": {
|
|
||||||
"regenerator-runtime": "^0.14.0"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"@fast-csv/format": {
|
"@fast-csv/format": {
|
||||||
"version": "4.3.5",
|
"version": "4.3.5",
|
||||||
|
|
@ -2587,11 +2584,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"regenerator-runtime": {
|
|
||||||
"version": "0.14.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
|
||||||
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
|
||||||
},
|
|
||||||
"rimraf": {
|
"rimraf": {
|
||||||
"version": "3.0.2",
|
"version": "3.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
"sinon": "^13.0.2"
|
"sinon": "^13.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "^7.26.10",
|
"@babel/runtime": "^7.28.2",
|
||||||
"@mapbox/node-pre-gyp": "^1.0.10",
|
"@mapbox/node-pre-gyp": "^1.0.10",
|
||||||
"@rwap/jquery-ui-touch-punch": "^1.0.11",
|
"@rwap/jquery-ui-touch-punch": "^1.0.11",
|
||||||
"@wekanteam/dragscroll": "https://github.com/wekan/dragscroll.git",
|
"@wekanteam/dragscroll": "https://github.com/wekan/dragscroll.git",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue