2024-10-07 12:32:04 +00:00
# documentation: https://supertokens.com/docs/guides
# slogan: An open-source authentication solution that simplifies the implementation of secure user authentication and session management for web and mobile applications.
2025-08-17 16:23:57 +00:00
# category: auth
2024-10-07 12:32:04 +00:00
# tags: supertokens,login,authentication,authorization,oauth,user-management,session-management,access-control,otp,magic-link,passwordless
# logo: svgs/supertokens.svg
# port: 3567
services :
supertokens :
image : registry.supertokens.io/supertokens/supertokens-postgresql:latest
depends_on :
postgres :
condition : service_healthy
environment :
2025-08-10 08:10:22 +00:00
- SERVICE_URL_SUPERTOKENS_3567
2024-10-07 12:32:04 +00:00
- API_KEYS=${API_KEYS:-}
- POSTGRESQL_CONNECTION_URI="postgresql://$SERVICE_USER_POSTGRESQL:$SERVICE_PASSWORD_POSTGRESQL@postgres:5432/${POSTGRES_DB:-supertokens}"
healthcheck :
test : "bash -c 'exec 3<>/dev/tcp/127.0.0.1/3567 && echo -e \"GET /hello HTTP/1.1\\r\\nhost: 127.0.0.1:3567\\r\\nConnection: close\\r\\n\\r\\n\" >&3 && cat <&3 | grep \"Hello\"'\n"
interval : 10s
timeout : 5s
retries : 5
postgres :
image : postgres:16
environment :
- POSTGRES_USER=$SERVICE_USER_POSTGRESQL
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRESQL
- POSTGRES_DB=${POSTGRES_DB:-supertokens}
volumes :
- supertokens-postgres-data:/var/lib/postgresql/data
healthcheck :
test : [ "CMD" , "pg_isready" , "-U" , "$SERVICE_USER_POSTGRESQL" , "-d" , "${POSTGRES_DB:-supertokens}" ]
interval : 5s
timeout : 5s
retries : 5