-
Notifications
You must be signed in to change notification settings - Fork 16
/
docker-compose.yml
50 lines (47 loc) · 2.49 KB
/
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
42
43
44
45
46
47
48
49
50
version: '2'
services:
octoeverywhere-bambu-connect:
image: octoeverywhere/octoeverywhere:latest
environment:
# https://octoeverywhere.com/s/access-code
- ACCESS_CODE=XXXXXXXX
# https://octoeverywhere.com/s/bambu-sn
- SERIAL_NUMBER=XXXXXXXXXXXXXXX
# Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
- PRINTER_IP=XXX.XXX.XXX.XXX
# Optionally: If you want to connect via the Bambu Cloud, you can specify the following environment variables.
# By default the plugin will use the local connection mode, which is preferred.
# Bambu Cloud might not work for all printers and account types due to limitations by Bambu Labs. :(
#
# If you use Bambu Cloud, you MUST disable 2 factor authentication, because Bambu does not allow us to support it.
# Your Bambu email address and password are KEPT LOCALLY, securely on disk, and are NEVER SENT to the OctoEverywhere service
# - BAMBU_CLOUD_ACCOUNT_EMAIL=quinn@test.com
# - BAMBU_CLOUD_ACCOUNT_PASSWORD=supersecretpassword
# - CONNECTION_MODE=cloud
volumes:
# This can also be an absolute path, e.g. /var/octoeverywhere/plugin/data or /c/users/name/plugin/data
- ./data:/data
# Add as many printers as you want!
# octoeverywhere-bambu-connect-2:
# image: octoeverywhere/octoeverywhere:latest
# environment:
# # https://octoeverywhere.com/s/access-code
# - ACCESS_CODE=XXXXXXXX
# # https://octoeverywhere.com/s/bambu-sn
# - SERIAL_NUMBER=XXXXXXXXXXXXXXX
# # Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
# - PRINTER_IP=XXX.XXX.XXX.XXX
#
# # Optionally: If you want to connect via the Bambu Cloud, you can specify the following environment variables.
# # By default the plugin will use the local connection mode, which is preferred.
# # Bambu Cloud might not work for all printers and account types due to limitations by Bambu Labs. :(
# #
# # If you use Bambu Cloud, you MUST disable 2 factor authentication, because Bambu does not allow us to support it.
# # Your Bambu email address and password are KEPT LOCALLY, securely on disk, and are NEVER SENT to the OctoEverywhere service
# # - BAMBU_CLOUD_ACCOUNT_EMAIL=quinn@test.com
# # - BAMBU_CLOUD_ACCOUNT_PASSWORD=supersecretpassword
# # - CONNECTION_MODE=cloud
#
# volumes:
# # Specify a path mapping for the required persistent storage
# - ./data:/data