Norm Brandinger

Results 5 comments of Norm Brandinger

Hi, Due to recent licensing changes around docker desktop, it's been removed from all systems (corporate and personal) that I use. Have found that colima works well for my purposes....

Sigh: "docker logs db" ... chown: /var/lib/postgresql/data: Permission denied ... I've seen this in the past as mentioned previously.

In docker-compose.yml, added postgres_data to volumes ``` volumes: prometheus_data: {} grafana_data: {} postgres_data: {} ``` Then in the db section, changed the volumes to ``` volumes: - postgres_data:/var/lib/postgresql/data ``` The...

``` diff --git a/heplify-server/hom7-prom-all/docker-compose.yml b/heplify-server/hom7-prom-all/docker-compose.yml index c801989..d33c8d0 100644 --- a/heplify-server/hom7-prom-all/docker-compose.yml +++ b/heplify-server/hom7-prom-all/docker-compose.yml @@ -3,6 +3,7 @@ version: '2.1' volumes: prometheus_data: {} grafana_data: {} + postgres_data: {} services: prometheus: @@ -190,7...

The following updates to docker-compose.yml were needed to be able to get PostgreSQL to start and access the web interfaces of the various packages ``` diff --git a/heplify-server/hom7-prom-all/docker-compose.yml b/heplify-server/hom7-prom-all/docker-compose.yml index...