chore: add container names and additional environment variables for karakeep services in compose.yaml
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
parent
7c51baa69d
commit
c31066c178
@ -2,6 +2,7 @@ services:
|
||||
web:
|
||||
image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release}
|
||||
restart: unless-stopped
|
||||
container_name: karakeep_web
|
||||
networks:
|
||||
- proxy-net
|
||||
volumes:
|
||||
@ -23,6 +24,17 @@ services:
|
||||
environment:
|
||||
MEILI_ADDR: http://meilisearch:7700
|
||||
BROWSER_WEB_URL: http://chrome:9222
|
||||
DISABLE_SIGNUPS: ${DISABLE_SIGNUPS} #If enabled, no new signups will be allowed and the signup button will be disabled in the UI
|
||||
DISABLE_PASSWORD_AUTH: ${DISABLE_PASSWORD_AUTH} #If enabled, only signups and logins using OAuth are allowed and the signup button and login form for local accounts will be disabled in the UI
|
||||
EMAIL_VERIFICATION_REQUIRED: ${EMAIL_VERIFICATION_REQUIRED} #Whether email verification is required during user signup. If enabled, users must verify their email address before they can use their account. If you enable this, you must configure SMTP settings.
|
||||
OAUTH_AUTO_REDIRECT: ${OAUTH_AUTO_REDIRECT} #If enabled and password authentication is disabled, automatically redirect to the OAuth provider instead of showing the login page. Useful when OAuth is the only authentication method available.
|
||||
OAUTH_WELLKNOWN_URL: ${OAUTH_WELLKNOWN_URL} #The "wellknown Url" for openid-configuration as provided by the OAuth provider
|
||||
OAUTH_CLIENT_SECRET: ${OAUTH_CLIENT_SECRET} #The "Client Secret" as provided by the OAuth provider
|
||||
OAUTH_CLIENT_IDX: ${OAUTH_CLIENT_ID} #The "Client ID" as provided by the OAuth provider
|
||||
OAUTH_SCOPE: ${OAUTH_SCOPE} #Full list of scopes to request (space delimited)"
|
||||
OAUTH_PROVIDER_NAME: ${OAUTH_PROVIDER_NAME} #The name of your provider. Will be shown on the signup page as "Sign in with <name>"
|
||||
OAUTH_ALLOW_DANGEROUS_EMAIL_ACCOUNT_LINKING: ${OAUTH_ALLOW_DANGEROUS_EMAIL_ACCOUNT_LINKING} #Whether existing accounts in karakeep stored in the database should automatically be linked with your OAuth account. Only enable it if you trust the OAuth provider!
|
||||
OAUTH_TIMEOUT: ${OAUTH_TIMEOUT} #The wait time in milliseconds for the OAuth provider response. Increase this if you are having outgoing request timed out errors
|
||||
# OPENAI_API_KEY: ...
|
||||
|
||||
# You almost never want to change the value of the DATA_DIR variable.
|
||||
@ -31,6 +43,7 @@ services:
|
||||
chrome:
|
||||
image: gcr.io/zenika-hub/alpine-chrome:124
|
||||
restart: unless-stopped
|
||||
container_name: karakeep_chrome
|
||||
networks:
|
||||
- proxy-net
|
||||
command:
|
||||
@ -43,6 +56,7 @@ services:
|
||||
meilisearch:
|
||||
image: getmeili/meilisearch:v1.41.0
|
||||
restart: unless-stopped
|
||||
container_name: karakeep_meilisearch
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user