changes to deploy dev server
This commit is contained in:
@ -1,4 +1,12 @@
|
|||||||
-- Create a table for public profiles
|
create table statuses (
|
||||||
|
id uuid default gen_random_uuid() primary key,
|
||||||
|
user_id uuid references auth.users on delete cascade not null,
|
||||||
|
updated_by_id uuid references auth.users on delete set null,
|
||||||
|
created_at timestamp with time zone default now() not null,
|
||||||
|
status text not null,
|
||||||
|
constraint status_length check (char_length(status) >= 3 and char_length(status) <= 80)
|
||||||
|
);
|
||||||
|
|
||||||
create table profiles (
|
create table profiles (
|
||||||
id uuid references auth.users on delete cascade not null primary key,
|
id uuid references auth.users on delete cascade not null primary key,
|
||||||
updated_at timestamp with time zone,
|
updated_at timestamp with time zone,
|
||||||
@ -6,30 +14,51 @@ create table profiles (
|
|||||||
full_name text,
|
full_name text,
|
||||||
avatar_url text,
|
avatar_url text,
|
||||||
provider text,
|
provider text,
|
||||||
|
current_status_id uuid references statuses(id) on delete set null,
|
||||||
constraint full_name_length check (char_length(full_name) >= 3 and char_length(full_name) <= 50)
|
constraint full_name_length check (char_length(full_name) >= 3 and char_length(full_name) <= 50)
|
||||||
);
|
);
|
||||||
-- Set up Row Level Security (RLS)
|
|
||||||
-- See https://supabase.com/docs/guides/auth/row-level-security for more details.
|
|
||||||
alter table profiles
|
alter table profiles
|
||||||
enable row level security;
|
enable row level security;
|
||||||
|
|
||||||
create policy "Public profiles are viewable by everyone." on profiles
|
create policy "Public profiles are viewable by everyone." on profiles
|
||||||
for select using (true);
|
for select using (true);
|
||||||
|
|
||||||
create policy "Users can insert their own profile." on profiles
|
create policy "Users can insert their own profile." on profiles
|
||||||
for insert with check ((select auth.uid()) = id);
|
for insert with check ((select auth.uid()) = id);
|
||||||
|
|
||||||
create policy "Users can update own profile." on profiles
|
create policy "Users can update own profile." on profiles
|
||||||
for update using ((select auth.uid()) = id);
|
for update using ((select auth.uid()) = id);
|
||||||
|
|
||||||
-- This trigger automatically creates a profile entry when a new user signs up via Supabase Auth.
|
-- set up row level security (rls) for statuses
|
||||||
-- See https://supabase.com/docs/guides/auth/managing-user-data#using-triggers for more details.
|
alter table statuses
|
||||||
|
enable row level security;
|
||||||
|
|
||||||
|
-- policies for statuses
|
||||||
|
create policy "Public statuses are viewable by everyone." on statuses
|
||||||
|
for select using (true);
|
||||||
|
create policy "Authenticated users can insert statuses for any user."
|
||||||
|
on public.statuses
|
||||||
|
for insert
|
||||||
|
with check (
|
||||||
|
(select auth.role()) = 'authenticated'
|
||||||
|
);
|
||||||
|
create policy "Authenticated users can update statuses for any user."
|
||||||
|
on public.statuses
|
||||||
|
for update
|
||||||
|
using (
|
||||||
|
(select auth.role()) = 'authenticated'
|
||||||
|
)
|
||||||
|
with check (
|
||||||
|
(select auth.role()) = 'authenticated'
|
||||||
|
);
|
||||||
|
|
||||||
|
-- function to handle new user creation
|
||||||
create function public.handle_new_user()
|
create function public.handle_new_user()
|
||||||
returns trigger
|
returns trigger
|
||||||
set search_path = ''
|
set search_path = ''
|
||||||
as $$
|
as $$
|
||||||
|
declare
|
||||||
|
new_status_id uuid;
|
||||||
begin
|
begin
|
||||||
|
-- first create the profile
|
||||||
insert into public.profiles (id, email, full_name, avatar_url, provider, updated_at)
|
insert into public.profiles (id, email, full_name, avatar_url, provider, updated_at)
|
||||||
values (
|
values (
|
||||||
new.id,
|
new.id,
|
||||||
@ -39,88 +68,68 @@ begin
|
|||||||
new.raw_user_meta_data->>'provider',
|
new.raw_user_meta_data->>'provider',
|
||||||
now()
|
now()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
-- then create the first status
|
||||||
|
insert into public.statuses (user_id, updated_by_id, status)
|
||||||
|
values (
|
||||||
|
new.id,
|
||||||
|
new.id,
|
||||||
|
'Just joined!'
|
||||||
|
) returning id into new_status_id;
|
||||||
|
|
||||||
|
-- update the profile with the current status
|
||||||
|
update public.profiles
|
||||||
|
set current_status_id = new_status_id
|
||||||
|
where id = new.id;
|
||||||
|
|
||||||
return new;
|
return new;
|
||||||
end;
|
end;
|
||||||
$$ language plpgsql security definer;
|
$$ language plpgsql security definer;
|
||||||
|
|
||||||
|
-- function to update profile when status changes
|
||||||
|
create function public.update_profile_current_status()
|
||||||
|
returns trigger
|
||||||
|
set search_path = ''
|
||||||
|
as $$
|
||||||
|
begin
|
||||||
|
-- update the profile's current_status_id to the most recent status
|
||||||
|
update public.profiles
|
||||||
|
set current_status_id = (
|
||||||
|
select id
|
||||||
|
from public.statuses
|
||||||
|
where user_id = new.user_id
|
||||||
|
order by created_at desc
|
||||||
|
limit 1
|
||||||
|
)
|
||||||
|
where id = new.user_id;
|
||||||
|
|
||||||
|
return new;
|
||||||
|
end;
|
||||||
|
$$ language plpgsql security definer;
|
||||||
|
|
||||||
|
-- triggers
|
||||||
create trigger on_auth_user_created
|
create trigger on_auth_user_created
|
||||||
after insert on auth.users
|
after insert on auth.users
|
||||||
for each row execute procedure public.handle_new_user();
|
for each row execute procedure public.handle_new_user();
|
||||||
|
|
||||||
-- Set up Storage!
|
create trigger on_status_insert_or_update
|
||||||
insert into storage.buckets (id, name)
|
after insert or update on public.statuses
|
||||||
values ('avatars', 'avatars');
|
for each row execute procedure public.update_profile_current_status();
|
||||||
|
|
||||||
-- Set up access controls for storage.
|
-- set up storage with public access!
|
||||||
-- See https://supabase.com/docs/guides/storage#policy-examples for more details.
|
insert into storage.buckets (id, name, public)
|
||||||
|
values ('avatars', 'avatars', true);
|
||||||
|
|
||||||
|
-- set up access controls for storage (adjusted for public access)
|
||||||
create policy "Avatar images are publicly accessible." on storage.objects
|
create policy "Avatar images are publicly accessible." on storage.objects
|
||||||
for select using (bucket_id = 'avatars');
|
for select using (bucket_id = 'avatars');
|
||||||
|
|
||||||
create policy "Anyone can upload an avatar." on storage.objects
|
create policy "Anyone can upload an avatar." on storage.objects
|
||||||
for insert with check (bucket_id = 'avatars');
|
for insert with check (bucket_id = 'avatars');
|
||||||
|
|
||||||
create policy "Anyone can update an avatar." on storage.objects
|
create policy "Anyone can update an avatar." on storage.objects
|
||||||
for update using (bucket_id = 'avatars');
|
for update using (bucket_id = 'avatars');
|
||||||
|
|
||||||
create policy "Anyone can delete an avatar." on storage.objects
|
create policy "Anyone can delete an avatar." on storage.objects
|
||||||
for delete using (bucket_id = 'avatars');
|
for delete using (bucket_id = 'avatars');
|
||||||
|
|
||||||
-- Create a table for public statuses
|
-- enable realtime
|
||||||
CREATE TABLE statuses (
|
|
||||||
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
|
|
||||||
user_id uuid REFERENCES public.profiles ON DELETE CASCADE NOT NULL,
|
|
||||||
updated_by_id uuid REFERENCES public.profiles ON DELETE SET NULL DEFAULT auth.uid(),
|
|
||||||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
|
||||||
status text NOT NULL,
|
|
||||||
CONSTRAINT status_length CHECK (char_length(status) >= 3 AND char_length(status) <= 80)
|
|
||||||
);
|
|
||||||
|
|
||||||
-- Set up Row Level Security (RLS)
|
|
||||||
ALTER TABLE statuses
|
|
||||||
ENABLE ROW LEVEL SECURITY;
|
|
||||||
|
|
||||||
-- Policies
|
|
||||||
CREATE POLICY "Public statuses are viewable by everyone." ON statuses
|
|
||||||
FOR SELECT USING (true);
|
|
||||||
|
|
||||||
-- RECREATE it using the recommended sub-select form
|
|
||||||
CREATE POLICY "Authenticated users can insert statuses for any user."
|
|
||||||
ON public.statuses
|
|
||||||
FOR INSERT
|
|
||||||
WITH CHECK (
|
|
||||||
(SELECT auth.role()) = 'authenticated'
|
|
||||||
);
|
|
||||||
|
|
||||||
-- ADD an UPDATE policy so anyone signed-in can update *any* status
|
|
||||||
CREATE POLICY "Authenticated users can update statuses for any user."
|
|
||||||
ON public.statuses
|
|
||||||
FOR UPDATE
|
|
||||||
USING (
|
|
||||||
(SELECT auth.role()) = 'authenticated'
|
|
||||||
)
|
|
||||||
WITH CHECK (
|
|
||||||
(SELECT auth.role()) = 'authenticated'
|
|
||||||
);
|
|
||||||
|
|
||||||
-- Function to add first status
|
|
||||||
CREATE FUNCTION public.handle_first_status()
|
|
||||||
RETURNS TRIGGER
|
|
||||||
SET search_path = ''
|
|
||||||
AS $$
|
|
||||||
BEGIN
|
|
||||||
INSERT INTO public.statuses (user_id, updated_by_id, status)
|
|
||||||
VALUES (
|
|
||||||
NEW.id,
|
|
||||||
NEW.id,
|
|
||||||
'Just joined!'
|
|
||||||
);
|
|
||||||
RETURN NEW;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE plpgsql SECURITY DEFINER;
|
|
||||||
|
|
||||||
-- Create a separate trigger for the status
|
|
||||||
CREATE TRIGGER on_auth_user_created_add_status
|
|
||||||
AFTER INSERT ON auth.users
|
|
||||||
FOR EACH ROW EXECUTE PROCEDURE public.handle_first_status();
|
|
||||||
|
|
||||||
alter publication supabase_realtime add table profiles;
|
alter publication supabase_realtime add table profiles;
|
||||||
alter publication supabase_realtime add table statuses;
|
alter publication supabase_realtime add table statuses;
|
||||||
|
@ -1,23 +1,23 @@
|
|||||||
networks:
|
networks:
|
||||||
supabase-network:
|
techtracker-dev:
|
||||||
name: supabase-network
|
name: techtracker-dev
|
||||||
driver: bridge
|
driver: bridge
|
||||||
ipam:
|
ipam:
|
||||||
config:
|
config:
|
||||||
- subnet: 172.20.0.0/16
|
- subnet: 172.21.0.0/16
|
||||||
services:
|
services:
|
||||||
studio:
|
studio:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: studio/Dockerfile
|
dockerfile: studio/Dockerfile
|
||||||
target: dev
|
target: dev
|
||||||
networks: [supabase-network]
|
networks: [techtracker-dev]
|
||||||
ports:
|
ports:
|
||||||
- 8082:8082
|
- 8082:8082
|
||||||
mail:
|
mail:
|
||||||
container_name: supabase-mail
|
container_name: ttsbd-supabase-mail
|
||||||
image: inbucket/inbucket:3.0.3
|
image: inbucket/inbucket:3.0.3
|
||||||
networks: [supabase-network]
|
networks: [techtracker-dev]
|
||||||
ports:
|
ports:
|
||||||
- '2500:2500' # SMTP
|
- '2500:2500' # SMTP
|
||||||
- '9000:9000' # web interface
|
- '9000:9000' # web interface
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
|
|
||||||
networks:
|
networks:
|
||||||
supabase-network:
|
techtracker-dev:
|
||||||
name: supabase-network
|
name: techtracker-dev
|
||||||
driver: bridge
|
driver: bridge
|
||||||
ipam:
|
ipam:
|
||||||
config:
|
config:
|
||||||
- subnet: 172.20.0.0/16
|
- subnet: 172.21.0.0/16
|
||||||
services:
|
services:
|
||||||
minio:
|
minio:
|
||||||
image: minio/minio
|
image: minio/minio
|
||||||
networks: [supabase-network]
|
container_name: ttsbd-supabase-minio
|
||||||
|
networks: [techtracker-dev]
|
||||||
ports:
|
ports:
|
||||||
- '9000:9000'
|
- '9000:9000'
|
||||||
- '9001:9001'
|
- '9001:9001'
|
||||||
@ -27,7 +28,8 @@ services:
|
|||||||
|
|
||||||
minio-createbucket:
|
minio-createbucket:
|
||||||
image: minio/mc
|
image: minio/mc
|
||||||
networks: [supabase-network]
|
container_name: ttsbd-supabase-minio-createbucket
|
||||||
|
networks: [techtracker-dev]
|
||||||
depends_on:
|
depends_on:
|
||||||
minio:
|
minio:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
@ -39,9 +41,9 @@ services:
|
|||||||
"
|
"
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
container_name: supabase-storage
|
container_name: ttsbd-supabase-storage
|
||||||
image: supabase/storage-api:v1.11.13
|
image: supabase/storage-api:v1.11.13
|
||||||
networks: [supabase-network]
|
networks: [techtracker-dev]
|
||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
# Disable this if you are using an external Postgres database
|
# Disable this if you are using an external Postgres database
|
||||||
@ -91,9 +93,9 @@ services:
|
|||||||
- ./volumes/storage:/var/lib/storage:z
|
- ./volumes/storage:/var/lib/storage:z
|
||||||
|
|
||||||
imgproxy:
|
imgproxy:
|
||||||
container_name: supabase-imgproxy
|
container_name: ttsbd-supabase-imgproxy
|
||||||
image: darthsim/imgproxy:v3.8.0
|
image: darthsim/imgproxy:v3.8.0
|
||||||
networks: [supabase-network]
|
networks: [techtracker-dev]
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: [ "CMD", "imgproxy", "health" ]
|
test: [ "CMD", "imgproxy", "health" ]
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
|
@ -5,22 +5,22 @@
|
|||||||
# Destroy: docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml down -v --remove-orphans
|
# Destroy: docker compose -f docker-compose.yml -f ./dev/docker-compose.dev.yml down -v --remove-orphans
|
||||||
# Reset everything: ./reset.sh
|
# Reset everything: ./reset.sh
|
||||||
|
|
||||||
name: techtracker
|
name: techtracker-dev
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
techtracker:
|
techtracker-dev:
|
||||||
name: techtracker
|
name: techtracker-dev
|
||||||
driver: bridge
|
driver: bridge
|
||||||
ipam:
|
ipam:
|
||||||
config:
|
config:
|
||||||
- subnet: 172.19.0.0/16
|
- subnet: 172.21.0.0/16
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
studio:
|
studio:
|
||||||
container_name: supabase-studio
|
container_name: ttsbd-supabase-studio
|
||||||
image: supabase/studio:2025.05.19-sha-3487831
|
image: supabase/studio:2025.05.19-sha-3487831
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
@ -59,9 +59,9 @@ services:
|
|||||||
# NEXT_ANALYTICS_BACKEND_PROVIDER: bigquery
|
# NEXT_ANALYTICS_BACKEND_PROVIDER: bigquery
|
||||||
|
|
||||||
kong:
|
kong:
|
||||||
container_name: supabase-kong
|
container_name: ttsbd-supabase-kong
|
||||||
image: kong:2.8.1
|
image: kong:2.8.1
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${KONG_HTTP_PORT}:8000/tcp
|
- ${KONG_HTTP_PORT}:8000/tcp
|
||||||
@ -88,9 +88,9 @@ services:
|
|||||||
entrypoint: bash -c 'eval "echo \"$$(cat ~/temp.yml)\"" > ~/kong.yml && /docker-entrypoint.sh kong docker-start'
|
entrypoint: bash -c 'eval "echo \"$$(cat ~/temp.yml)\"" > ~/kong.yml && /docker-entrypoint.sh kong docker-start'
|
||||||
|
|
||||||
auth:
|
auth:
|
||||||
container_name: supabase-auth
|
container_name: ttsbd-supabase-auth
|
||||||
image: supabase/gotrue:v2.172.1
|
image: supabase/gotrue:v2.172.1
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
@ -197,9 +197,9 @@ services:
|
|||||||
# GOTRUE_HOOK_SEND_EMAIL_SECRETS: "v1,whsec_VGhpcyBpcyBhbiBleGFtcGxlIG9mIGEgc2hvcnRlciBCYXNlNjQgc3RyaW5n"
|
# GOTRUE_HOOK_SEND_EMAIL_SECRETS: "v1,whsec_VGhpcyBpcyBhbiBleGFtcGxlIG9mIGEgc2hvcnRlciBCYXNlNjQgc3RyaW5n"
|
||||||
|
|
||||||
rest:
|
rest:
|
||||||
container_name: supabase-rest
|
container_name: ttsbd-supabase-rest
|
||||||
image: postgrest/postgrest:v12.2.12
|
image: postgrest/postgrest:v12.2.12
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
@ -222,9 +222,9 @@ services:
|
|||||||
|
|
||||||
realtime:
|
realtime:
|
||||||
# This container name looks inconsistent but is correct because realtime constructs tenant id by parsing the subdomain
|
# This container name looks inconsistent but is correct because realtime constructs tenant id by parsing the subdomain
|
||||||
container_name: realtime-dev.supabase-realtime
|
container_name: ttsbd-realtime-dev.supabase-realtime
|
||||||
image: supabase/realtime:v2.34.47
|
image: supabase/realtime:v2.34.47
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
@ -268,9 +268,9 @@ services:
|
|||||||
|
|
||||||
# To use S3 backed storage: docker compose -f docker-compose.yml -f docker-compose.s3.yml up
|
# To use S3 backed storage: docker compose -f docker-compose.yml -f docker-compose.s3.yml up
|
||||||
storage:
|
storage:
|
||||||
container_name: supabase-storage
|
container_name: ttsbd-supabase-storage
|
||||||
image: supabase/storage-api:v1.22.17
|
image: supabase/storage-api:v1.22.17
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/storage:/var/lib/storage:z
|
- ./volumes/storage:/var/lib/storage:z
|
||||||
@ -312,9 +312,9 @@ services:
|
|||||||
IMGPROXY_URL: http://imgproxy:5001
|
IMGPROXY_URL: http://imgproxy:5001
|
||||||
|
|
||||||
imgproxy:
|
imgproxy:
|
||||||
container_name: supabase-imgproxy
|
container_name: ttsbd-supabase-imgproxy
|
||||||
image: darthsim/imgproxy:v3.8.0
|
image: darthsim/imgproxy:v3.8.0
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/storage:/var/lib/storage:z
|
- ./volumes/storage:/var/lib/storage:z
|
||||||
@ -335,9 +335,9 @@ services:
|
|||||||
IMGPROXY_ENABLE_WEBP_DETECTION: ${IMGPROXY_ENABLE_WEBP_DETECTION}
|
IMGPROXY_ENABLE_WEBP_DETECTION: ${IMGPROXY_ENABLE_WEBP_DETECTION}
|
||||||
|
|
||||||
meta:
|
meta:
|
||||||
container_name: supabase-meta
|
container_name: ttsbd-supabase-meta
|
||||||
image: supabase/postgres-meta:v0.89.0
|
image: supabase/postgres-meta:v0.89.0
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
@ -354,9 +354,9 @@ services:
|
|||||||
PG_META_DB_PASSWORD: ${POSTGRES_PASSWORD}
|
PG_META_DB_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
|
|
||||||
functions:
|
functions:
|
||||||
container_name: supabase-edge-functions
|
container_name: ttsbd-supabase-edge-functions
|
||||||
image: supabase/edge-runtime:v1.67.4
|
image: supabase/edge-runtime:v1.67.4
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/functions:/home/deno/functions:Z
|
- ./volumes/functions:/home/deno/functions:Z
|
||||||
@ -379,12 +379,12 @@ services:
|
|||||||
]
|
]
|
||||||
|
|
||||||
analytics:
|
analytics:
|
||||||
container_name: supabase-analytics
|
container_name: ttsbd-supabase-analytics
|
||||||
image: supabase/logflare:1.12.0
|
image: supabase/logflare:1.12.0
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
#ports:
|
||||||
- 4000:4000
|
#- 4000:4000
|
||||||
# Uncomment to use Big Query backend for analytics
|
# Uncomment to use Big Query backend for analytics
|
||||||
# volumes:
|
# volumes:
|
||||||
# - type: bind
|
# - type: bind
|
||||||
@ -428,9 +428,9 @@ services:
|
|||||||
|
|
||||||
# Comment out everything below this point if you are using an external Postgres database
|
# Comment out everything below this point if you are using an external Postgres database
|
||||||
db:
|
db:
|
||||||
container_name: supabase-db
|
container_name: ttsbd-supabase-db
|
||||||
image: supabase/postgres:15.8.1.060
|
image: supabase/postgres:15.8.1.060
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
ports:
|
ports:
|
||||||
- ${POSTGRES_PORT}:${POSTGRES_PORT}
|
- ${POSTGRES_PORT}:${POSTGRES_PORT}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@ -490,9 +490,9 @@ services:
|
|||||||
]
|
]
|
||||||
|
|
||||||
vector:
|
vector:
|
||||||
container_name: supabase-vector
|
container_name: ttsbd-supabase-vector
|
||||||
image: timberio/vector:0.28.1-alpine
|
image: timberio/vector:0.28.1-alpine
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./volumes/logs/vector.yml:/etc/vector/vector.yml:ro,z
|
- ./volumes/logs/vector.yml:/etc/vector/vector.yml:ro,z
|
||||||
@ -522,9 +522,9 @@ services:
|
|||||||
|
|
||||||
# Update the DATABASE_URL if you are using an external Postgres database
|
# Update the DATABASE_URL if you are using an external Postgres database
|
||||||
supavisor:
|
supavisor:
|
||||||
container_name: supabase-pooler
|
container_name: ttsbd-supabase-pooler
|
||||||
image: supabase/supavisor:2.5.1
|
image: supabase/supavisor:2.5.1
|
||||||
networks: [techtracker]
|
networks: [techtracker-dev]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
#- ${POSTGRES_PORT}:5432
|
#- ${POSTGRES_PORT}:5432
|
||||||
@ -576,4 +576,4 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-config:
|
db-config:
|
||||||
name: techtracker-config
|
name: techtracker-dev-config
|
||||||
|
Reference in New Issue
Block a user