Skip to content

Commit

Permalink
add BOM and initial docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jun 26, 2018
1 parent 5d9657a commit 39934e2
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
27 changes: 27 additions & 0 deletions BOM.md
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
51 changes: 51 additions & 0 deletions docker-compose.yml
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"

0 comments on commit 39934e2

Please sign in to comment.