-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompose.yml
More file actions
39 lines (33 loc) · 796 Bytes
/
compose.yml
File metadata and controls
39 lines (33 loc) · 796 Bytes
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
services:
s3ql-app:
image: docker.io/nfrastack/s3ql:latest
container_name: s3ql-app
volumes:
- ./cache:/cache
- ./config:/config
- ./logs:/logs
- ./data:/data:shared
privileged: true
cap_add:
- SYS_ADMIN
devices:
- /dev/fuse:/dev/fuse:rwm
environment:
- TIMEZONE=America/Vancouver
- CONTAINER_NAME=s3ql-app
- MODE=normal
- S3_HOST=s3c://s3.host:443/bucket_name
- S3_KEY_ID=supersecretid
- S3_KEY_SECRET=supersecretsecret
- S3QL_PASS=encryptedpassword
- ENABLE_CACHE=TRUE
- ENABLE_PERSISTENT_CACHE=TRUE
- COMPRESSION=none
- LOG_TYPE=FILE
networks:
- services
restart: always
stop_grace_period: 10m
networks:
services:
external: true