-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
41 lines (37 loc) · 1007 Bytes
/
docker-compose.yml
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
services:
web:
build: .
environment:
BANNER_CACHE_HOST: https://www.thetvdb.com
DATABASE_URL: postgres://postgres:example@postgres/whatchy
S3_ACCESS_KEY_ID: minioadmin
S3_BUCKET: whatchy
S3_ENDPOINT: http://192.168.178.108:9000
S3_REGION: us-east-1
S3_SECRET_ACCESS_KEY: minioadmin
SECRET_KEY_BASE: changeme
SMTP_ENABLED: "true"
SMTP_PASSWORD: changeme
SMTP_PORT: "1025"
SMTP_SERVER: mailcatcher
SMTP_USERNAME: changeme
THETVDB_APIKEY: changeme
ports:
- "8080:8080"
postgres:
image: postgres:latest
environment:
POSTGRES_PASSWORD: example
mailcatcher:
image: dockage/mailcatcher:0.9.0
ports:
- "1080:1080"
minio:
image: quay.io/minio/minio:RELEASE.2024-11-07T00-52-20Z
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
ports:
- "9000:9000"
- "9001:9001"