March 4, 20251 yr https://hub.docker.com/r/supabase/postgres/ Can someone explain how to install this? When I try using Add Container with `supabase/postgres:latest` it doesn't download. I've tried other tags besides `latest` and had the same problem. I've not had issues installing other Docker Hub containers. For example ngnix works as expected. This make it hard to understand how it might be a dns issue. What might be the problem? Can anyone try doing an initital install of this just to see if the download works for them? Thanks! Edited March 5, 20251 yr by GollyJer
March 5, 20251 yr yes the pull works but not as expected... https://hub.docker.com/r/supabase/postgres/tags I went with the top tag. root@Docker:~# docker pull supabase/postgres Using default tag: latest Error response from daemon: manifest for supabase/postgres:latest not found: manifest unknown: manifest unknown root@Docker:~# docker pull supabase/postgres:15.8.1.047 which means if you want to use this, you will need to spefiy the tag int he repo...
March 5, 20251 yr Author OK, that is crazy. I tried like 5 different tags the other day, including the one you just posted, and they didn't work. Tried again just now and worked perfectly. Thanks! Now I can troubleshoot actually getting this working. Will post back here if I have other questions. Cheers. 🍻
May 24, 20251 yr Do you have a docker compose file with all the default unraid paths and so on? (to share) ;)
May 24, 20251 yr 20 minutes ago, peppoonline said:Do you have a docker compose file with all the default unraid paths and so on? (to share) ;)I will make one here soon. I can. But usualy with unraid we liek to use the temapte to build the docer run UI. Ill adde it to my to do list today have 3 dockers ish that need some form of updates.... while I can I also don't see why i should you could use the docker hubs compose file...https://hub.docker.com/r/supabase/postgresWIP- untested:copose version wiht unraid edits and option ber docker hub#version: '3.8'#Version noted but not passed... Unraid docker compose starts with services...#Uses docker bridge network by default no network info posted here...services:db:# Use the latest PostgreSQL 17 Supabase imageimage: supabase/postgres:17.4.1.036# Uncomment below to use PostgreSQL 15 instead# image: supabase/postgres:15.8.1.047container_name: supabase_postgresports:- "5432:5432"# Required for Supabase images 14.1.0 and latercommand: postgres -c config_file=/etc/postgresql/postgresql.confenvironment:# RequiredPOSTGRES_PASSWORD: postgres# Common PostgreSQL environment variablesPOSTGRES_USER: postgres # Default userPOSTGRES_DB: postgres # Default database#Best to not touch this variable... one as this is also volume mounted for storage on unraid disk.....PGDATA: /var/lib/postgresql/data # Data directory path# Optional tuning/configPOSTGRES_INITDB_ARGS: "--data-checksums" # Enable data checksumsPOSTGRES_HOST_AUTH_METHOD: trust # (dev only) trust connections without password# Extensions (included by default in Supabase image):# PostGIS, pgRouting, pgTAP, pg_cron, pgAudit, pgjwt, pgsql-http,# plpgsql_check, pg-safeupdate, wal2json, PL/Java, plv8, pg_plan_filter,# pg_net, rum, pg_hashids, pg_sodiumvolumes:- postgres_data:/var/lib/postgresql/datalabels:net.unraid.docker.icon: 'https://raw.githubusercontent.com/sgraaf/Unraid-Docker-Templates/main/postgresql17/icon.png'folder.view: SupabasePostgresnet.unraid.docker.managed: 'composeman'#Make the database storage folder before hand...#mkdir /mnt/user/appdata/supabasepostgresvolumes:postgres_data:driver: localdriver_opts:type: nonedevice: /mnt/user/appdata/supabasepostgreso: bindyaml line syntax required... I can't guarantee it anymore with inline text to post do to forum new update...I would recommend running it throughhttps://www.composerize.com/and copy paste the This will also remove the coments of whats what ... coment out version...docker-compose.yml Edited May 24, 20251 yr by bmartino1
May 24, 20251 yr what I mean by using the tempalte is:install postgress v17click advnce togle...change the repository to the docker image and change the Registry URL: to the docker hub page...so:repository would become:supabase/postgres:17.4.1.036andregistry URL would become:https://hub.docker.com/r/supabase/postgresthen edit and add the other variables...Bare min:want other options then add themsuch as var: POSTGRES_INITDB_ARGS:with docker authoring enabled you can then save it as a unraid template and github host it on your own CA unraid Repository.I'm working/ added a immich postgress sql... I could host a simalte tempatel to CA...GitHubGitHub - bmartino1/unraid-docker-templates: Unraid CA XML...Unraid CA XML files. Contribute to bmartino1/unraid-docker-templates development by creating an account on GitHub.
May 24, 20251 yr On 3/5/2025 at 2:38 PM, GollyJer said:OK, that is crazy. I tried like 5 different tags the other day, including the one you just posted, and they didn't work.Tried again just now and worked perfectly. Thanks!Now I can troubleshoot actually getting this working. Will post back here if I have other questions. Cheers. 🍻They are doing some work on that docker hub repo a latest tag was never redefined.
May 24, 20251 yr Ah damn, you're explicitely talking about "supabase/postgres"... I assumed you talked about the whole "supabase stack" 😄I was hoping for someone having a click and ready supabase deployment (or at least heading into that direction).Perhaps I'll take the whole supabase docker-compose file and try to adapt it for Unraid... Edited May 24, 20251 yr by peppoonline
May 24, 20251 yr 18 minutes ago, peppoonline said:Ah damn, you're explicitely talking about "supabase/postgres"... I assumed you talked about the whole "supabase stack" 😄I was hoping for someone having a click and ready supabase deployment (or at least heading into that direction).Perhaps I'll take the whole supabase docker-compose file and try to adapt it for Unraid...I can look into it and get back to you.Not sure what that stack is or does. I have another higher priory atm and can get back to you when I have that info.as this appears to have a compose file already:https://supabase.com/docs/guides/self-hosting/dockercompose:https://github.com/supabase/supabase/blob/master/docker/docker-compose.ymlenv:https://github.com/supabase/supabase/blob/master/docker/.env.example Edited May 24, 20251 yr by bmartino1 Data-Typo
May 24, 20251 yr Supabase is a vector store which I want to use for my N8N automations.Allegedly this paired with "hybrid search" is the gold standard for RAG bots :)I never used a docker-compose file in my Unraid environment, that's why I was hesitating ;)Perhaps I just try it, ty :) Edited May 24, 20251 yr by peppoonline
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.