File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
apps/dokploy/templates/listmonk Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 11services :
22 db :
3- image : postgres:13
3+ image : postgres:17-alpine
44 ports :
55 - 5432
66 networks :
@@ -19,7 +19,7 @@ services:
1919 - listmonk-data:/var/lib/postgresql/data
2020
2121 setup :
22- image : listmonk/listmonk:v3.0 .0
22+ image : listmonk/listmonk:v4.1 .0
2323 networks :
2424 - dokploy-network
2525 volumes :
@@ -35,7 +35,7 @@ services:
3535
3636 app :
3737 restart : unless-stopped
38- image : listmonk/listmonk:v3.0 .0
38+ image : listmonk/listmonk:v4.1 .0
3939 environment :
4040 - TZ=Etc/UTC
4141 depends_on :
Original file line number Diff line number Diff line change @@ -2,13 +2,11 @@ import {
22 type DomainSchema ,
33 type Schema ,
44 type Template ,
5- generatePassword ,
65 generateRandomDomain ,
76} from "../utils" ;
87
98export function generate ( schema : Schema ) : Template {
109 const randomDomain = generateRandomDomain ( schema ) ;
11- const adminPassword = generatePassword ( 32 ) ;
1210
1311 const domains : DomainSchema [ ] = [
1412 {
@@ -19,7 +17,7 @@ export function generate(schema: Schema): Template {
1917 ] ;
2018
2119 const envs = [
22- `# login with admin: ${ adminPassword } ` ,
20+ `# visit the page to setup your super admin user ` ,
2321 "# check config.toml in Advanced / Volumes for more options" ,
2422 ] ;
2523
@@ -29,9 +27,6 @@ export function generate(schema: Schema): Template {
2927 content : `[app]
3028address = "0.0.0.0:9000"
3129
32- admin_username = "admin"
33- admin_password = "${ adminPassword } "
34-
3530[db]
3631host = "db"
3732port = 5432
You can’t perform that action at this time.
0 commit comments