Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d339e3f
add sequelize orm package
runleveldev Oct 20, 2025
f872120
initialize sequelize-cli
runleveldev Oct 21, 2025
1864049
add services models
runleveldev Oct 21, 2025
1116eaa
fix config path
runleveldev Oct 21, 2025
8062fef
flatten services model
runleveldev Oct 21, 2025
2d583a9
fix service model definition
runleveldev Oct 22, 2025
50ace75
add json-to-sql script
runleveldev Oct 22, 2025
bd4421b
remove pointless envvar check
runleveldev Oct 22, 2025
08e81d0
add ejs dependency
runleveldev Oct 22, 2025
9306124
add containers index page
runleveldev Oct 22, 2025
19aac49
fix logo path
runleveldev Oct 22, 2025
72e29a5
simplify logout form handling
runleveldev Oct 22, 2025
2db0c5e
unify page styles
runleveldev Oct 22, 2025
e2f7200
add missing fields to the container model
runleveldev Oct 22, 2025
8df1112
new container form improvements
runleveldev Oct 22, 2025
024b4df
fix aiContainer fields in container model
runleveldev Oct 22, 2025
4fa2e4f
remove ssh public key support from the html frontend
runleveldev Oct 22, 2025
02b492a
database update handling
runleveldev Oct 23, 2025
9ad86c2
fix form redirect handling
runleveldev Oct 23, 2025
186d6f9
remove unused body-parser import
runleveldev Oct 23, 2025
c57cb32
document extra .env settings
runleveldev Oct 23, 2025
bb1187c
remove duplicate services.json file
runleveldev Oct 23, 2025
55aa6c0
fix ratelmiting
runleveldev Oct 23, 2025
ff38269
remove unused import
runleveldev Oct 24, 2025
acf8af6
group statements
runleveldev Oct 24, 2025
7f64710
replace portmap.js with static templates
runleveldev Oct 24, 2025
955703f
Merge branch 'main' into 59-nginx-reverse-proxycreate-a-container-sha…
runleveldev Oct 24, 2025
29e75b3
add nginx-reverse-proxy README
runleveldev Oct 24, 2025
d7fbdc2
add create-a-container README
runleveldev Oct 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix service model definition
  • Loading branch information
runleveldev committed Oct 22, 2025
commit 2d583a9def9a73b90bae4d187d43c6dcf398eada
6 changes: 3 additions & 3 deletions create-a-container/models/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ module.exports = (sequelize, DataTypes) => {
allowNull: false
},
externalPort: {
type: Sequelize.INTEGER.UNSIGNED,
type: DataTypes.INTEGER.UNSIGNED,
allowNull: true // NULL for http services
},
tls: {
type: Sequelize.BOOLEAN,
type: DataTypes.BOOLEAN,
allowNull: true // only used for tcp services
},
externalHostname: {
type: Sequelize.STRING(255),
type: DataTypes.STRING(255),
allowNull: true // only used for http services
},
}, {
Expand Down