-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdocker-compose.yml
115 lines (97 loc) · 4.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
version: '2'
services:
octoeverywhere-connect:
image: octoeverywhere/octoeverywhere:latest
environment:
# Required: The mode of OctoEverywhere Companion you want use.
# - bambu: Bambu Connect - for Bambu Lab 3D printers such as the Bambu Lab A1, P1, and X1 series.
# - elegoo: Elegoo Connect - for Elegoo OS 3D printers such as the Elegoo Centauri & Elegoo Centauri Carbon.
# - klipper: Use this for Klipper / Moonraker based printers.
#
# Set this to the mode you want to use, and then uncomment the required settings for the mode bellow.
- COMPANION_MODE=bambu
#
# Required for Bambu Connect
#
# https://octoeverywhere.com/s/access-code
#- ACCESS_CODE=5285c831
#
# https://octoeverywhere.com/s/bambu-sn
#- SERIAL_NUMBER=00M09C411200608
#
# Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
#- PRINTER_IP=10.0.0.23
#
# Required for Elegoo Connect
#
# Find using the printer's display or use https://octoeverywhere.com/s/elegoo-ip
#- PRINTER_IP=XXX.XXX.XXX.XXX
#
# Required For Klipper / Moonraker
#
# Required - The IP address of the Klipper/Moonraker/Webserver/Printer
#- PRINTER_IP=XXX.XXX.XXX.XXX
#
# Optional - The port of Moonraker. This defaults to 7125 if not set.
#- MOONRAKER_PORT=7125
#
# Optional - The port of frontend webserver. This defaults to 80 if not set.
#- WEBSERVER_PORT=80
#
# Optional Settings For All Modes
#
# Set timezone to proper timezone for logs using standard timezones:
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
- TZ=America/New_York
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 and printer types as you want!
#
# octoeverywhere-connect-2:
# image: octoeverywhere/octoeverywhere:latest
# environment:
# # Required: The mode of OctoEverywhere Companion you want use.
# # - bambu: Bambu Connect - for Bambu Lab 3D printers such as the Bambu Lab A1, P1, and X1 series.
# # - elegoo: Elegoo Connect - for Elegoo OS 3D printers such as the Elegoo Centauri & Elegoo Centauri Carbon.
# # - klipper: Use this for Klipper / Moonraker based printers.
# #
# # Set this to the mode you want to use, and then uncomment the required settings for the mode bellow.
# - COMPANION_MODE=bambu
# #
# # Required for Bambu Connect
# #
# # https://octoeverywhere.com/s/access-code
# #- ACCESS_CODE=5285c831
# #
# # https://octoeverywhere.com/s/bambu-sn
# #- SERIAL_NUMBER=00M09C411200608
# #
# # Find using the printer's display or use https://octoeverywhere.com/s/bambu-ip
# #- PRINTER_IP=10.0.0.23
# #
# # Required for Elegoo Connect
# #
# # Find using the printer's display or use https://octoeverywhere.com/s/elegoo-ip
# #- PRINTER_IP=XXX.XXX.XXX.XXX
# #
# # Required For Klipper / Moonraker
# #
# # Required - The IP address of the Klipper/Moonraker/Webserver/Printer
# #- PRINTER_IP=XXX.XXX.XXX.XXX
# #
# # Optional - The port of Moonraker. This defaults to 7125 if not set.
# #- MOONRAKER_PORT=7125
# #
# # Optional - The port of frontend webserver. This defaults to 80 if not set.
# #- WEBSERVER_PORT=80
# #
# # Optional Settings For All Modes
# #
# # Set timezone to proper timezone for logs using standard timezones:
# # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# - TZ=America/New_York
# volumes:
# # This can also be an absolute path, e.g. /var/octoeverywhere/plugin/data or /c/users/name/plugin/data
# - ./data:/data