-
Notifications
You must be signed in to change notification settings - Fork 11
/
compose.local.yaml
62 lines (57 loc) · 1.35 KB
/
compose.local.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
services:
smtp4dev:
image: rnwood/smtp4dev
ports:
- '8091:80'
- '2525:25'
set-rauthy-volume-owner:
image: alpine
command: chown -R 10001:10001 /app/data
volumes:
- rauthy:/app/data
rauthy:
image: ghcr.io/sebadob/rauthy:0.25.0-lite
depends_on:
- set-rauthy-volume-owner
- smtp4dev
environment:
PUB_URL: localhost:9523
DATABASE_URL: 'sqlite:/app/data/rauthy.db'
BOOTSTRAP_ADMIN_EMAIL: [email protected]
BOOTSTRAP_ADMIN_PASSWORD_PLAIN: adminadmin
COOKIE_MODE: danger-insecure
COOKIE_SET_PATH: false
SMTP_URL: smtp4dev
SMTP_DANGER_INSECURE_PORT: 25
SMTP_USERNAME: dummy
SMTP_PASSWORD: dummy
SMTP_FROM: [email protected]
SMTP_DANGER_INSECURE: true
EMAIL_SUB_PREFIX: Weird.One
LOG_LEVEL_ACCESS: Verbose
http_proxy:
https_proxy:
volumes:
- rauthy:/app/data
backend:
image: leaf-rpc-server:main
environment:
DATA_DIR: /data
volumes:
- data:/data
build:
dockerfile: leaf-rpc-server.Dockerfile
weird:
image: weird:main
env_file: .env.local
environment:
BODY_SIZE_LIMIT: 15M
RAUTHY_URL: http://rauthy:8080
BACKEND_URL: http://backend:7431
ports:
- 9523:3000
build:
dockerfile: weird.Dockerfile
volumes:
rauthy:
data: