move install instructions to readme + move docker-compose
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
#!/usr/bin/env docker-compose -f
|
||||
|
||||
version: "3.4"
|
||||
|
||||
services:
|
||||
proxy:
|
||||
container_name: boss-proxy
|
||||
build:
|
||||
context: backend/proxy
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8080:80"
|
||||
|
||||
identity:
|
||||
container_name: boss-identity
|
||||
build:
|
||||
context: backend
|
||||
args:
|
||||
service: identity
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./backend/identity/identity-data.json:/app/identity-data.json
|
||||
|
||||
inventory:
|
||||
container_name: boss-inventory
|
||||
build:
|
||||
context: backend
|
||||
args:
|
||||
service: inventory
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./backend/inventory/inventory.db:/app/inventory.db
|
||||
|
||||
builds:
|
||||
container_name: boss-builds
|
||||
build:
|
||||
context: backend
|
||||
args:
|
||||
service: builds
|
||||
restart: unless-stopped
|
||||
env_file: secrets.env
|
||||
depends_on:
|
||||
- inventory
|
||||
links:
|
||||
- inventory
|
||||
|
||||
scaffolder:
|
||||
depends_on:
|
||||
- inventory
|
||||
links:
|
||||
- inventory
|
||||
build:
|
||||
context: backend
|
||||
args:
|
||||
service: scaffolder
|
||||
base_image: scaffolder
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./backend/scaffolder/templates:/app/templates:ro
|
||||
|
||||
env_file: secrets.env
|
||||
Reference in New Issue
Block a user