-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathdocker-compose-aws.yml
More file actions
57 lines (48 loc) · 1.35 KB
/
docker-compose-aws.yml
File metadata and controls
57 lines (48 loc) · 1.35 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
56
57
services:
redmine:
build: ./
image: sameersbn/redmine:6.1.2
environment:
- TZ=America/Sao_Paulo
- AWS_DB_CREDENTIALS_SECRET_REGION=
- AWS_DB_CREDENTIALS_SECRET_NAME=
- DB_NAME=redmine
- DB_SSL_MODE=prefer
- DB_CREATE=false
- REDMINE_PORT=10083
- REDMINE_HTTPS=false
- REDMINE_RELATIVE_URL_ROOT=
- REDMINE_SECRET_TOKEN=
- REDMINE_SUDO_MODE_ENABLED=false
- REDMINE_SUDO_MODE_TIMEOUT=15
- REDMINE_CONCURRENT_UPLOADS=2
- REDMINE_BACKUP_SCHEDULE=
- REDMINE_BACKUP_EXPIRY=
- REDMINE_BACKUP_TIME=
- NGINX_MAX_UPLOAD_SIZE=20m
- SMTP_ENABLED=false
- SMTP_METHOD=smtp
- SMTP_DOMAIN=www.example.com
- SMTP_HOST=smtp.gmail.com
- SMTP_PORT=587
- SMTP_USER=mailer@example.com
- SMTP_PASS=password
- SMTP_STARTTLS=true
- SMTP_AUTHENTICATION=:login
- IMAP_ENABLED=false
- IMAP_HOST=imap.gmail.com
- IMAP_PORT=993
- IMAP_USER=mailer@example.com
- IMAP_PASS=password
- IMAP_SSL=true
- IMAP_INTERVAL=30
healthcheck:
test: curl -f http://localhost/up || exit 1
interval: 10s
timeout: 10s
retries: 3
ports:
- "10083:80"
volumes:
- /srv/docker/redmine/redmine:/home/redmine/data
- /srv/docker/redmine/redmine-logs:/var/log/redmine