added rough mainnet implementation and added backup contact for email
This commit is contained in:
@@ -30,29 +30,23 @@ services:
|
||||
- TZ=UTC
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
# Persist BadgerDB data so schedules survive restarts
|
||||
- ../data/schedy:/data
|
||||
restart: unless-stopped
|
||||
|
||||
frontend:
|
||||
image: node:20-alpine
|
||||
# image: node:20-alpine
|
||||
image: git.manko.yoga/manawenuz/mortgagefi-frontend:alert
|
||||
platform: linux/amd64
|
||||
container_name: mortgagefi-frontend
|
||||
working_dir: /app
|
||||
# container_name: mortgagefi-frontend
|
||||
env_file: .env.local
|
||||
environment:
|
||||
- HOST=0.0.0.0
|
||||
- PORT=3000
|
||||
- NEXT_PUBLIC_NTFY_URL=${NEXT_PUBLIC_NTFY_URL:-/ntfy}
|
||||
- NEXT_PUBLIC_SCHEDY_URL=${NEXT_PUBLIC_SCHEDY_URL:-/schedy}
|
||||
volumes:
|
||||
- ./:/app
|
||||
- /app/node_modules
|
||||
command: >-
|
||||
sh -c "apk add --no-cache python3 make g++ git libc6-compat
|
||||
&& export PYTHON=/usr/bin/python3
|
||||
&& npm ci --legacy-peer-deps --no-audit --no-fund
|
||||
&& mkdir -p .next/static/development
|
||||
&& npm run dev -- --hostname 0.0.0.0 --port 3000"
|
||||
ports:
|
||||
# ports:
|
||||
- "3000:3000"
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
|
||||
Reference in New Issue
Block a user