767e09ee18
* WIP supabase integration * supabase oauth working * Supabase database triggers * Specify postgres:14 * Limit refreshOAuthToken jobs to 10 attempts * Better displaying types and removing onChange for now * WIP on the supabase db client * Finishing the supabase-js integration * Adding changeset * Added supabase to the integration catalogs, and added an optional icon to Integrations * Reworking how we handle types for the triggers (wip) * Update fully over to the new way to define supabase triggers * Go back to using the type for the event name * Add back in the icon to the JobListPresenter since it was moved from the ProjectPresenter * Remove unused import
25 lines
414 B
YAML
25 lines
414 B
YAML
version: "3"
|
|
|
|
volumes:
|
|
database-data:
|
|
|
|
networks:
|
|
app_network:
|
|
external: false
|
|
|
|
services:
|
|
database:
|
|
container_name: database
|
|
image: postgres:14
|
|
restart: always
|
|
volumes:
|
|
- database-data:/var/lib/postgresql/data/
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
networks:
|
|
- app_network
|
|
ports:
|
|
- 5432:5432
|