-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d9657a
commit 39934e2
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# BOM | ||
## Enclosure | ||
### Extrusions | ||
* 4x 430mm 2020 Aluminium Extrusion with all end holes tapped for either M5 or M6 bolts | ||
|
||
### Plates | ||
* 2x End plates, with holes expanded for M6 if 2020 is using M6 bolts (holes are sized for M5 by default) | ||
* 1x Front left handle plate | ||
* 1x Front right handle plate | ||
* 6x Reinforcement plates | ||
|
||
### Bolts/Nuts | ||
* 16x M5x8mm button head bolt (for securing front and reinforcement plates to extrusion) | ||
* 8x M5x16mm button head bolt (for securing end plates to the ends of extrusion, use M6 if tapped for M6) | ||
* 4x M5x20mm button head bolt (for securing handles to the front handle plates) | ||
* 16x M5 2020 hammer nuts | ||
|
||
## Backplane (each) | ||
### Bolts/Nuts | ||
* 4x M5x8mm | ||
* 4x M5 2020 hammer nuts | ||
* 4x M5 washer (~1mm thick) | ||
|
||
## Caddy (each) | ||
### Bolts/Nuts | ||
* 2x M5x8mm button head bolt | ||
* 2x M5 2020 hammer nuts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
version: '2' | ||
services: | ||
bushwood: | ||
image: spacklerind/bushwood | ||
container_name: bushwood | ||
ports: | ||
- "8080:8080/tcp" | ||
restart: always | ||
volumes: | ||
- ./bushwood:/app/caddyshack | ||
bakery: | ||
image: spacklerind/bakery | ||
container_name: bakery | ||
ports: | ||
- "8081:8080/tcp" | ||
restart: always | ||
volumes: | ||
- ./bakery:/app/bakery | ||
environment: | ||
- NFS_ADDRESS=10.1.1.1 | ||
- GK_SERVER=10.1.1.1 | ||
- GK_TOKEN=d42a152bff711f187479d8613ccb47925d82b21a | ||
spackler: | ||
image: spacklerind/spackler | ||
container_name: spackler | ||
ports: | ||
- "8085:8080/tcp" | ||
restart: always | ||
devices: | ||
- "/dev/ttyS0:/dev/ttyS0" | ||
environment: | ||
- GK_TOKEN=d42a152bff711f187479d8613ccb47925d82b21a | ||
- GK_SERVER="http://10.1.1.1:8080" | ||
loomis: | ||
image: spacklerind/loomis | ||
container_name: loomis | ||
ports: | ||
- "8090:8080/tcp" | ||
- "8091:8081/tcp" | ||
restart: always | ||
volumes: | ||
- ./loomis:/app/loomis/config | ||
- /dev:/dev | ||
privileged: true | ||
environment: | ||
- DOCKER_HTT_PORT="8090" | ||
- DOCKER_CONSOLES_PORT="8091" | ||
- GK_TOKEN=d42a152bff711f187479d8613ccb47925d82b21a | ||
- GK_SERVER="http://10.1.1.1:8080" | ||
- LOOMIS_SERVER="http://10.1.1.1" | ||
|