Unable to upload #10295
Unanswered
trev0r-STA
asked this question in
Q&A
Unable to upload
#10295
Replies: 3 comments 9 replies
-
|
You should post this in the “issues” section since discussions are more for feature suggestions and feedback, having said that, check your docker logs (one container at a time) and post any errors (on the issues section). |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Hi @trev0r-STA , |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Note that the quick start script is not the best permanent solution, it’s
just there to get you started.
IMHO one of the biggest issues is Minio which is discontinued. You should
provide a different S3 storage through the composer (and generate new JWT
keys and Postgres’s password).
It’s all there in the documentation.
Pedro Sánchez
Gracias por su Tiempo
…On Wed, May 13, 2026 at 14:35 trev0r-STA ***@***.***> wrote:
finally used the quickstart script and it work like a charm. Don't really
know what I've messed with the config
—
Reply to this email directly, view it on GitHub
<#10295 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABUSAX25Y54LPNZHL6HIRGT42S6ABAVCNFSM6AAAAACYRS5HW6VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTMOJQHA3DSMQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all
Experienced with linux and programming in general, but totally new to docker and it's not easy, I know why I've never wanted to use it 😁
I can't upload, I'm running the Quickstart script with some little modifications. I believe I've configured the CORS, but now... I don't know where to search.
Firewall is open, reverse proxy is set...
compose.yaml
`services:
museum:
image: ghcr.io/ente-io/server
ports:
- 8080:8080 # API
depends_on:
postgres:
condition: service_healthy
volumes:
- ./museum.yaml:/museum.yaml:ro
- ./data:/data:ro
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:8080/ping"]
interval: 60s
timeout: 5s
retries: 3
start_period: 120s
socat:
image: alpine/socat
network_mode: service:museum
depends_on: [museum]
command: "TCP-LISTEN:3200,fork,reuseaddr TCP:minio:3200"
web:
image: ghcr.io/ente-io/web
# Uncomment what you need to tweak.
ports:
- 3000:3000 # Photos web app
# - 3001:3001 # Accounts
- 3002:3002 # Public albums
# - 3003:3003 # Auth
# - 3004:3004 # Cast
# - 3005:3005 # Share
# - 3006:3006 # Embed
# - 3008:3008 # Paste
# Modify these values to your custom subdomains, if using any
environment:
ENTE_API_ORIGIN: http://localhost:8080
ENTE_ALBUMS_ORIGIN: http://localhost:3002
ENTE_PHOTOS_ORIGIN: http://localhost:3000
postgres:
image: postgres:15
environment:
POSTGRES_USER: pguser
POSTGRES_PASSWORD: db_pass
POSTGRES_DB: ente_db
healthcheck:
test: pg_isready -q -d ente_db -U pguser
start_period: 40s
start_interval: 1s
volumes:
- postgres-data:/var/lib/postgresql/data
minio:
image: minio/minio
ports:
- 3200:3200 # MinIO API
# Uncomment to enable MinIO Web UI
# - 3201:3201
environment:
MINIO_ROOT_USER: minio-user-XXXXX
MINIO_ROOT_PASSWORD: minio_pass
command: server /data --address ":3200" --console-address ":3201"
volumes:
- /home/data/ente:/data
post_start:
- command: |
sh -c '
#!/bin/sh
volumes:
postgres-data:
minio-data:
`
museum.yaml
`db:
host: postgres
port: 5432
name: ente_db
user: pguser
password: db_pass
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: minio-user-XXXXX
secret: minio_pass
endpoint: http://minio:3200
region: eu-central-2
bucket: b2-eu-cen
wasabi-eu-central-2-v3:
# are_local_buckets: true
# use_path_style_urls: true
key: minio-user-XXXXX
secret: minio_pass
endpoint: http://minio: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: minio-user-XXXXX
secret: minio_pass
endpoint: http://minio:3200
region: eu-central-2
bucket: scw-eu-fr-v3
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
# Public paste app
public-paste: http://localhost:3008
# 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: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
hash: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
jwt:
secret: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
internal:
admin: xxxxxxxxx`
Beta Was this translation helpful? Give feedback.
All reactions