Merge pull request #4 from xCyanGrizzly/copilot/fix-portainer-deployment-issues

fix: replace pull_policy: build with pull_policy: never to unbreak Portainer redeploy
This commit is contained in:
xCyanGrizzly
2026-03-04 15:25:30 +01:00
committed by GitHub
2 changed files with 3 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ services:
build:
context: .
dockerfile: Dockerfile
pull_policy: build
pull_policy: never
ports:
- "${APP_PORT:-3000}:3000"
environment:
@@ -35,7 +35,7 @@ services:
build:
context: .
dockerfile: worker/Dockerfile
pull_policy: build
pull_policy: never
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-dragons}:${POSTGRES_PASSWORD:-stash}@db:5432/${POSTGRES_DB:-dragonsstash}
- TELEGRAM_API_ID=${TELEGRAM_API_ID:-}
@@ -67,7 +67,7 @@ services:
build:
context: .
dockerfile: bot/Dockerfile
pull_policy: build
pull_policy: never
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-dragons}:${POSTGRES_PASSWORD:-stash}@db:5432/${POSTGRES_DB:-dragonsstash}
- BOT_TOKEN=${BOT_TOKEN:-}

View File

@@ -1,6 +0,0 @@
import { Inter } from "next/font/google";
export const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});