Skip to content

Instantly share code, notes, and snippets.

@AnanthVivekanand
Created September 7, 2025 21:43
Show Gist options
  • Select an option

  • Save AnanthVivekanand/a38c0991fbb84293cca50c512de51369 to your computer and use it in GitHub Desktop.

Select an option

Save AnanthVivekanand/a38c0991fbb84293cca50c512de51369 to your computer and use it in GitHub Desktop.
version: "3.4"
services:
grafana:
image: grafana/grafana
container_name: grafana
restart: always
ports:
- 13000:3000
networks:
- monitoring
volumes:
- ./grafana:/var/lib/grafana
environment:
GF_SECURITY_ADMIN_USER: "admin"
GF_SECURITY_ADMIN_PASSWORD: "adminadmin"
timescaledb:
image: timescale/timescaledb:latest-pg17
restart: always
ports:
- 15432:5432
environment:
POSTGRES_PASSWORD: "adminadmin"
volumes:
- ./timescaledb:/home/postgres/pgdata
networks:
- monitoring
networks:
monitoring:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment