Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 05cb216968 | |||
| 1c06ef00bd | |||
| 4ce7beea9e |
@@ -11,8 +11,8 @@ slug: "n8n"
|
|||||||
|
|
||||||
# --- Resource hints (displayed on deploy screen) ---
|
# --- Resource hints (displayed on deploy screen) ---
|
||||||
resources:
|
resources:
|
||||||
mem_request: "150M"
|
mem_request: "512M"
|
||||||
mem_limit: "512M"
|
mem_limit: "1536M"
|
||||||
pi_compatible: false
|
pi_compatible: false
|
||||||
needs_hdd: false
|
needs_hdd: false
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ services:
|
|||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
memory: 512M
|
memory: 1536M
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5678/healthz"]
|
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:5678/healthz"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|||||||
@@ -24,6 +24,10 @@ services:
|
|||||||
- SECRET_KEY=${SECRET_KEY}
|
- SECRET_KEY=${SECRET_KEY}
|
||||||
- UTILS_SECRET=${UTILS_SECRET}
|
- UTILS_SECRET=${UTILS_SECRET}
|
||||||
- DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline
|
- DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline
|
||||||
|
# Az Outline 1.x alapértelmezésben SSL-t vár a Postgrestől. A stackben futó
|
||||||
|
# sidecar Postgres nem beszél SSL-t (belső hálózat), ezért enélkül az app
|
||||||
|
# indulási hurokba kerül: "The server does not support SSL connections".
|
||||||
|
- PGSSLMODE=disable
|
||||||
- REDIS_URL=redis://outline-redis:6379
|
- REDIS_URL=redis://outline-redis:6379
|
||||||
- URL=https://${SUBDOMAIN}.${DOMAIN}
|
- URL=https://${SUBDOMAIN}.${DOMAIN}
|
||||||
- PORT=3000
|
- PORT=3000
|
||||||
|
|||||||
@@ -30,6 +30,17 @@ deploy_fields:
|
|||||||
default: "papra"
|
default: "papra"
|
||||||
required: true
|
required: true
|
||||||
locked_after_deploy: true
|
locked_after_deploy: true
|
||||||
|
|
||||||
|
- env_var: AUTH_SECRET
|
||||||
|
label: "Munkamenet-aláíró kulcs"
|
||||||
|
type: secret
|
||||||
|
generate: "hex:32"
|
||||||
|
locked_after_deploy: true
|
||||||
|
# A Papra éles módban ELUTASÍTJA az indulást, ha ez az alapértelmezett érték
|
||||||
|
# marad ("the auth secret must not be the default one"), ezért kötelező.
|
||||||
|
# Ez írja alá a munkameneteket: ha újragenerálódik, minden bejelentkezés
|
||||||
|
# érvénytelenné válik, ezért visszaállításkor a régi kulcsot kell megtartani.
|
||||||
|
data_key: true
|
||||||
description: "Az alkalmazás aldomainje"
|
description: "Az alkalmazás aldomainje"
|
||||||
|
|
||||||
# --- App info (info page content) ---
|
# --- App info (info page content) ---
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Budapest
|
- TZ=Europe/Budapest
|
||||||
- APP_BASE_URL=https://${SUBDOMAIN}.${DOMAIN}
|
- APP_BASE_URL=https://${SUBDOMAIN}.${DOMAIN}
|
||||||
|
- AUTH_SECRET=${AUTH_SECRET}
|
||||||
volumes:
|
volumes:
|
||||||
- papra_data:/app/data
|
- papra_data:/app/data
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
Reference in New Issue
Block a user