-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
55 lines (52 loc) · 1.27 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
55 lines (52 loc) · 1.27 KB
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
services:
# PostgreSQL Database
postgres:
image: postgres:15-alpine
container_name: cherryserver-postgres
restart: unless-stopped
environment:
POSTGRES_DB: cherryserver
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres123
ports:
- "5432:5432"
# PostgresSql for fileserver
fileserver-postgres:
image: postgres:15-alpine
container_name: fileserver-postgres
restart: unless-stopped
environment:
POSTGRES_DB: fileserver
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres123
ports:
- "5433:5432"
# Optional: PostgreSQL Admin (pgAdmin)
pgadmin:
image: dpage/pgadmin4:latest
container_name: cherryserver-pgadmin
restart: unless-stopped
environment:
PGADMIN_DEFAULT_EMAIL: admin@cherryserver.com
PGADMIN_DEFAULT_PASSWORD: admin123
PGADMIN_LISTEN_PORT: 80
ports:
- "8099:80"
depends_on:
- postgres
mailcrab:
image: marlonb/mailcrab:latest
ports:
- "1080:1080"
rauthy:
container_name: rauthy-test
image: ghcr.io/sebadob/rauthy:0.30.2
environment:
- LOCAL_TEST=true
- SMTP_URL=mailcrab
- SMTP_PORT=1025
- SMTP_DANGER_INSECURE=true
ports:
- "8443:8443"
depends_on:
- mailcrab