chore(docs): update docker image version in deployment instructions
- Change docker image tag from 1.4 to 1.5 in deployment guide - Update corresponding docker push command with new tag style(surprise-me): adjust page container height and overflow - Replace min-h-screen with fixed h-screen for full viewport height - Add overflow-y-auto to enable vertical scrolling within the page container - Maintain existing background color and header styles unchanged
This commit is contained in:
parent
5ed3640733
commit
3601add44c
BIN
data/media.db
BIN
data/media.db
Binary file not shown.
|
|
@ -254,7 +254,7 @@ For issues and feature requests, please check:
|
|||
## Build/Push Docker image to private repo
|
||||
Usage:
|
||||
# Build & push to private registry
|
||||
docker build -t 192.168.2.212:3000/tigeren/nextav:1.4 .
|
||||
docker push 192.168.2.212:3000/tigeren/nextav:1.4
|
||||
docker build -t 192.168.2.212:3000/tigeren/nextav:1.5 .
|
||||
docker push 192.168.2.212:3000/tigeren/nextav:1.5
|
||||
|
||||
docker login 192.168.2.212:3000
|
||||
|
|
@ -106,7 +106,7 @@ export default function SurpriseMePage() {
|
|||
};
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-zinc-950">
|
||||
<div className="h-screen overflow-y-auto bg-zinc-950">
|
||||
{/* Header */}
|
||||
<div className="bg-gradient-to-r from-purple-900/20 to-pink-900/20 border-b border-zinc-800">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||||
|
|
|
|||
Loading…
Reference in New Issue