Add ente containers
All checks were successful
Deploy / Deploy (push) Successful in 1m54s

This commit is contained in:
2025-12-30 18:09:45 +00:00
parent 7f6c921847
commit c8c6491efb
4 changed files with 260 additions and 0 deletions

61
museum.template.yaml Normal file
View File

@@ -0,0 +1,61 @@
db:
host: postgres
port: 5432
name: ente_db
user: pguser
password: ${CFG_ENTE_POSTGRES_PASSWORD}
s3:
# Top-level configuration for buckets, you can override by specifying these configuration in the desired bucket.
# Set this to false if using external object storage bucket or bucket with SSL
are_local_buckets: true
# Set this to false if using subdomain-style URL. This is set to true for ensuring compatibility with MinIO when SSL is enabled.
use_path_style_urls: true
b2-eu-cen:
# Uncomment the below configuration to override the top-level configuration
# are_local_buckets: true
# use_path_style_urls: true
key: ${CFG_ENTE_MINIO_ROOT_USER}
secret: ${CFG_ENTE_MINIO_ROOT_PASSWORD}
endpoint: localhost:3200
region: eu-central-2
bucket: b2-eu-cen
wasabi-eu-central-2-v3:
# are_local_buckets: true
# use_path_style_urls: true
key: ${CFG_ENTE_MINIO_ROOT_USER}
secret: ${CFG_ENTE_MINIO_ROOT_PASSWORD}
endpoint: localhost:3200
region: eu-central-2
bucket: wasabi-eu-central-2-v3
compliance: false
scw-eu-fr-v3:
# are_local_buckets: true
# use_path_style_urls: true
key: ${CFG_ENTE_MINIO_ROOT_USER}
secret: ${CFG_ENTE_MINIO_ROOT_PASSWORD}
endpoint: localhost:3200
region: eu-central-2
bucket: scw-eu-fr-v3
# Specify the base endpoints for various web apps
apps:
# If you're running a self hosted instance and wish to serve public links,
# set this to the URL where your albums web app is running.
public-albums: http://localhost:3002
cast: http://localhost:3004
# Public locker (share) app
public-locker: http://localhost:3005
# Embed app for embedded album sharing
embed-albums: http://localhost:3006
# Set this to the URL where your accounts web app is running, primarily used for
# passkey based 2FA.
accounts: http://localhost:3001
key:
encryption: ${CFG_ENTE_MUSEUM_KEY_ENCRYPTION}
hash: ${CFG_ENTE_MUSEUM_KEY_HASH}
jwt:
secret: ${CFG_ENTE_MUSEUM_JWT_SECRET}