Skip to content

Commit

Permalink
added storage
Browse files Browse the repository at this point in the history
  • Loading branch information
Fruittips committed Nov 7, 2023
1 parent e6b91e4 commit ea2c963
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions fire-cloud/docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
version: '3'
version: "3"

services:
firecloud:
image: "<ECR_REGISTRY>/<SERVER_NAME>:<TAG>"
restart: always
expose:
- "3001"
ports:
- "3001:3001"
command: "node index.js"
grafana:
image: grafana/grafana-oss:latest
restart: always
ports:
- "80:3000"
volumes:
- grafana-storage:/var/lib/grafana
environment:
- GF_SECURITY_ADMIN_PASSWORD=greendot
- GF_USERS_ALLOW_SIGN_UP=false
firecloud:
image: "<ECR_REGISTRY>/<SERVER_NAME>:<TAG>"
restart: always
expose:
- "3001"
ports:
- "3001:3001"
command: "node index.js"

grafana:
image: grafana/grafana-oss:latest
restart: always
ports:
- "80:3000"
volumes:
- grafana-mounted-storage:/var/lib/storage/grafana
environment:
- GF_SECURITY_ADMIN_PASSWORD=greendot
- GF_USERS_ALLOW_SIGN_UP=false
volumes:
grafana-storage:
grafana-mounted-storage:

0 comments on commit ea2c963

Please sign in to comment.