Skip to content
Snippets Groups Projects
Commit 5b1f49ab authored by Mart van Santen's avatar Mart van Santen
Browse files

Renames

parent 38802391
No related branches found
No related tags found
2 merge requests!68Merge loginpanel into main and release 0.5.0,!57Resolve "Add login panel CI/CD to create (docker) image"
File moved
File moved
File moved
# This Dockerfile is only used for testing CI/CD testing and is not used in
# production.
FROM oryd/kratos:latest-sqlite
# Set DSN in Dockerfile, as services variables in CI/CD testing as shared
# between services and the DSN is different for different services.
ENV DSN="postgres://kratos:kratos@postgres/kratos"
# Copy testing schema and config into image
COPY identity.default.schema.json /etc/config/identity.default.schema.json
COPY kratos.yaml /etc/config/kratos.yaml
# This is the kratos configuration file, which is used during CI/CD testing
# this file does not end up in production.
courier:
smtp:
from_address: no-reply@example.com
connection_uri: smtp://smtp:smtp@smtp.example.com:25/
identity:
default_schema_url: file:///etc/config/identity.default.schema.json
log:
level: info
selfservice:
default_browser_return_url: http://localhost/login/login
flows:
login:
ui_url: http://localhost/login/login
recovery:
enabled: true
lifespan: 15m
ui_url: http://localhost/login/recovery
registration:
ui_url: http://localhost/login/registration
settings:
ui_url: http://localhost/login/settings
methods:
link:
enabled: true
secrets:
cookie:
- a not so save secret
- an other not so save secret
serve:
admin:
port: 4434
public:
base_url: http://localhost/api/
port: 4433
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment