Skip to content

Commit

Permalink
fix: remove duplicate var env in docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
leynier committed Nov 16, 2021
1 parent 83e8f5e commit 6e501c9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions infra/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# docker-compose.yml
version: '3'
services:
gotrue: # Signup enabled, autoconfirm off
gotrue:
# Signup enabled, autoconfirm off
image: supabase/gotrue:latest
ports:
- '9999:9999'
Expand Down Expand Up @@ -40,7 +41,8 @@ services:
depends_on:
- db
restart: on-failure
autoconfirm: # Signup enabled, autoconfirm on
autoconfirm:
# Signup enabled, autoconfirm on
image: supabase/gotrue:latest
ports:
- '9998:9998'
Expand All @@ -60,7 +62,6 @@ services:
GOTRUE_OPERATOR_TOKEN: super-secret-operator-token
DATABASE_URL: 'postgres://postgres:postgres@db:5432/postgres?sslmode=disable'
GOTRUE_EXTERNAL_PHONE_ENABLED: 'true'
GOTRUE_SMS_AUTOCONFIRM: 'true'
GOTRUE_SMTP_HOST: mail
GOTRUE_SMTP_PORT: 2500
GOTRUE_SMTP_USER: GOTRUE_SMTP_USER
Expand All @@ -69,7 +70,8 @@ services:
depends_on:
- db
restart: on-failure
disabled: # Signup disabled
disabled:
# Signup disabled
image: supabase/gotrue:latest
ports:
- '9997:9997'
Expand Down

0 comments on commit 6e501c9

Please sign in to comment.