Add docker-compose and environment configuration for Polly Pocket and Constipation Orion services

This commit is contained in:
2026-02-19 11:08:34 -05:00
parent c67fc1fb97
commit 1386d622ae
2 changed files with 46 additions and 0 deletions

34
docker-compose.yaml Normal file
View File

@@ -0,0 +1,34 @@
services:
### POLLY POCKET ###
octoeverywhere-polly-pocket:
image: octoeverywhere/octoeverywhere:latest
restart: unless-stopped
container_name: octoeverywhere-polly-pocket
environment:
# Requried to set the docker conntainer in Bambu Connect mode.
- COMPANION_MODE=${BAMBU_COMPANION_MODE:-bambu}
- ACCESS_CODE=${POLLY_POCKET_ACCESS_CODE:-00000000}
- SERIAL_NUMBER=${POLLY_POCKET_SERIAL_NUMBER:-000000000000}
- PRINTER_IP=${POLLY_POCKET_PRINTER_IP:-192.168.1.219}
volumes:
# This can also be an absolute path as well.
- ${POLLY_POCKET_DATA_PATH:-/mnt/user/appdata/octoeverywhere/polly}:/data:rw
### CONSTIPATION ORION ###
octoeverywhere-constipation-orion:
image: octoeverywhere/octoeverywhere:latest
restart: always
container_name: octoeverywhere-constipation-orion
environment:
# Requried to set the docker conntainer in Bambu Connect mode.
- COMPANION_MODE=${BAMBU_COMPANION_MODE:-bambu}
# https://octoeverywhere.com/s/access-code
- ACCESS_CODE=${CONSTIPATION_ORION_ACCESS_CODE:-00000000}
# https://octoeverywhere.com/s/bambu-sn
- SERIAL_NUMBER=${CONSTIPATION_ORION_SERIAL_NUMBER:-000000000000}
# https://octoeverywhere.com/s/bambu-ip
- PRINTER_IP=${CONSTIPATION_ORION_PRINTER_IP:-192.168.1.202}
volumes:
# This can also be an absolute path as well.
- ${CONSTIPATION_ORION_DATA_PATH:-/mnt/user/appdata/octoeverywhere/constipation-orion}:/data:rw

12
octoeverywhere.env Normal file
View File

@@ -0,0 +1,12 @@
BAMBU_COMPANION_MODE=bambu
### POLLY POCKET CONFIG ###
POLLY_POCKET_ACCESS_CODE=37086528
POLLY_POCKET_PRINTER_IP=192.168.1.219
POLLY_POCKET_SERIAL_NUMBER=0309CA580403653
POLLY_POCKET_DATA_PATH=/mnt/user/appdata/octoeverywhere/polly
### CONSTIPATION ORION CONFIG ###
CONSTIPATION_ORION_ACCESS_CODE=e54dc81d
CONSTIPATION_ORION_SERIAL_NUMBER=31B8AP5A2200288
CONSTIPATION_ORION_PRINTER_IP=192.168.1.202