You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/deployment/docker.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,13 @@ services:
19
19
- "8000:8000"
20
20
environment:
21
21
RUST_LOG: INFO
22
-
# add here your configuration
22
+
FEEDBACK_FUSION_CONFIG: /path/to/container/config
23
23
restart: unless-stopped
24
+
volumes:
25
+
- /path/to/config:/path/to/container/config
24
26
```
25
27
26
-
Add in as `environment` your actual configuration values. Refer to the [configuration documentation](/docs/configuration) for the fields that need to be set.
28
+
Refer to the [configuration documentation](/docs/configuration) for the config file details.
0 commit comments