Skip to content

Commit

Permalink
Release v1.0.0-rc8
Browse files Browse the repository at this point in the history
  • Loading branch information
lkr-braiins committed May 5, 2022
1 parent e3651b9 commit d4c3547
Showing 1 changed file with 17 additions and 22 deletions.
39 changes: 17 additions & 22 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
version: '3'

volumes:
prometheus_data: {}
grafana_data: {}

services:
farm-proxy:
image: braiinssystems/farm-proxy:v1.0.0-rc8
container_name: farm-proxy
network_mode: "host"
volumes:
- "./config/sample.toml:/conf/farm_proxy.yml"
environment:
- CONF_PATH=/conf/farm_proxy.yml
- RUST_LOG=debug
- RUST_BACKTRACE=full
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "50"
compress: "true"
prometheus:
image: prom/prometheus:latest
container_name: prometheus
Expand All @@ -28,7 +43,6 @@ services:
compress: "true"
labels:
org.label-schema.group: "monitoring"

nodeexporter:
image: prom/node-exporter:latest
container_name: nodeexporter
Expand All @@ -51,7 +65,6 @@ services:
compress: "true"
labels:
org.label-schema.group: "monitoring"

grafana:
image: grafana/grafana:8.4.0
container_name: grafana
Expand All @@ -73,21 +86,3 @@ services:
compress: "true"
labels:
org.label-schema.group: "monitoring"

farm-proxy:
image: braiinssystems/farm-proxy:v1.0.0-rc7
container_name: farm-proxy
network_mode: "host"
volumes:
- "./config/sample.toml:/conf/farm_proxy.yml"
environment:
- CONF_PATH=/conf/farm_proxy.yml
- RUST_LOG=debug
- RUST_BACKTRACE=full
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "100m"
max-file: "50"
compress: "true"

0 comments on commit d4c3547

Please sign in to comment.