Skip to content

Commit 39363f1

Browse files
Bump traefik from 2.11.28 to 2.11.29 in /compose/production/traefik in the docker group across 1 directory (#252)
* Add newrelic agent to docker compose * Add newrelic to python containers * Bump traefik Bumps the docker group with 1 update in the /compose/production/traefik directory: traefik. Updates `traefik` from 2.11.28 to 2.11.29 --- updated-dependencies: - dependency-name: traefik dependency-version: 2.11.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Matthew Foster Walsh <15671892+mfosterw@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0ddc093 commit 39363f1

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

compose/production/django/entrypoint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ END
4242
>&2 echo 'PostgreSQL is available'
4343

4444

45-
exec "$@"
45+
newrelic-admin run-program "$@"

compose/production/traefik/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/traefik:2.11.28
1+
FROM docker.io/traefik:2.11.29
22
RUN mkdir -p /etc/traefik/acme \
33
&& touch /etc/traefik/acme/acme.json \
44
&& chmod 600 /etc/traefik/acme/acme.json

docker-compose.production.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,17 @@ services:
9292
limits:
9393
cpus: "0.1"
9494
memory: 100M
95+
96+
newrelic-agent:
97+
image: newrelic/infrastructure:1.67.3
98+
env_file:
99+
- ./.envs/.production/.newrelic
100+
cap_add:
101+
- SYS_PTRACE
102+
network_mode: host
103+
pid: host
104+
privileged: true
105+
volumes:
106+
- "/:/host:ro"
107+
- "/var/run/docker.sock:/var/run/docker.sock"
108+
restart: unless-stopped

0 commit comments

Comments
 (0)