chore: updated images tags

This commit is contained in:
ITQ
2025-05-08 13:46:47 +03:00
parent e4fb6d491c
commit c9907f6e6c
4 changed files with 10 additions and 13 deletions
+8 -10
View File
@@ -113,7 +113,7 @@ services:
restart: unless-stopped restart: unless-stopped
celery-exporter: celery-exporter:
image: docker.io/danihodovic/celery-exporter:0.11.1 image: docker.io/danihodovic/celery-exporter:0.11.3
depends_on: depends_on:
redis: redis:
restart: false restart: false
@@ -174,7 +174,7 @@ services:
target: /data target: /data
redis-exporter: redis-exporter:
image: docker.io/oliver006/redis_exporter:v1.67.0-alpine image: docker.io/oliver006/redis_exporter:v1.71.0-alpine
depends_on: depends_on:
redis: redis:
restart: false restart: false
@@ -207,9 +207,6 @@ services:
retries: 5 retries: 5
oom_kill_disable: true oom_kill_disable: true
restart: unless-stopped restart: unless-stopped
secrets:
- source: postgres_password
target: /run/secrets/postgres_password
shm_size: 128mb shm_size: 128mb
volumes: volumes:
- type: volume - type: volume
@@ -217,7 +214,7 @@ services:
target: /var/lib/postgresql/data target: /var/lib/postgresql/data
postgres-exporter: postgres-exporter:
image: quay.io/prometheuscommunity/postgres-exporter:v0.16.0 image: quay.io/prometheuscommunity/postgres-exporter:v0.17.1
depends_on: depends_on:
postgres: postgres:
restart: false restart: false
@@ -232,7 +229,7 @@ services:
shm_size: 4mb shm_size: 4mb
pgadmin: pgadmin:
image: docker.io/dpage/pgadmin4:9 image: docker.io/dpage/pgadmin4:9.3
configs: configs:
- source: pgadmin_servers - source: pgadmin_servers
target: /pgadmin4/servers.json target: /pgadmin4/servers.json
@@ -275,6 +272,9 @@ services:
- source: grafana_config - source: grafana_config
target: /usr/share/grafana/conf/defaults.ini target: /usr/share/grafana/conf/defaults.ini
entrypoint: ["/etc/grafana/scripts/entrypoint.sh"] entrypoint: ["/etc/grafana/scripts/entrypoint.sh"]
env_file:
- path: ./infrastructure/grafana/.env
required: false
healthcheck: healthcheck:
test: ["CMD", "wget", "-O", "-", "http://localhost:3000/api/health"] test: ["CMD", "wget", "-O", "-", "http://localhost:3000/api/health"]
interval: 1m30s interval: 1m30s
@@ -413,7 +413,7 @@ services:
target: /tmp target: /tmp
proxy: proxy:
image: docker.io/nginx:1.27-alpine image: docker.io/nginx:1.28-alpine-slim
configs: configs:
- source: nginx_config - source: nginx_config
target: /etc/nginx/nginx.conf target: /etc/nginx/nginx.conf
@@ -448,7 +448,5 @@ configs:
file: ./infrastructure/nginx/nginx.conf file: ./infrastructure/nginx/nginx.conf
secrets: secrets:
postgres_password:
file: ./infrastructure/postgres/password
pgadmin_password: pgadmin_password:
file: ./infrastructure/pgadmin/password file: ./infrastructure/pgadmin/password
+1 -1
View File
@@ -1,3 +1,3 @@
POSTGRES_DB=postgres POSTGRES_DB=postgres
POSTGRES_USER=postgres POSTGRES_USER=postgres
POSTGRES_PASSWORD_FILE=/run/secrets/postgres_password POSTGRES_PASSWORD=postgres
-1
View File
@@ -1 +0,0 @@
postgres
+1 -1
View File
@@ -11,4 +11,4 @@ COPY checker_requirements.txt .
RUN pip install --no-cache-dir -r checker_requirements.txt RUN pip install --no-cache-dir -r checker_requirements.txt
CMD ["python"] CMD ["sleep", "infinity"]