Skip to content

Commit

Permalink
Update env variable prefixes for TimescaleDB and Jaeger
Browse files Browse the repository at this point in the history
Changed environment variable prefixes from 'MF_' to 'MG_' in docker-compose to reflect updated project nomenclature. This aligns TimescaleDB and Jaeger configuration with the new naming convention, ensuring consistency across the project environment setups.

Signed-off-by: SammyOina <[email protected]>
  • Loading branch information
SammyOina committed Jan 29, 2024
1 parent 71fd84b commit f704441
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ services:
volumes:
- callhome-timescaledb-data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: ${MF_CALLHOME_TIMESCALE_PASSWORD}
POSTGRES_USER: ${MF_CALLHOME_TIMESCALE_USER}
POSTGRES_DB: ${MF_CALLHOME_TIMESCALE_DB_NAME}
POSTGRES_PASSWORD: ${MG_CALLHOME_TIMESCALE_PASSWORD}
POSTGRES_USER: ${MG_CALLHOME_TIMESCALE_USER}
POSTGRES_DB: ${MG_CALLHOME_TIMESCALE_DB_NAME}
networks:
- callhome-base-net
callhome-server:
Expand Down Expand Up @@ -59,9 +59,9 @@ services:
image: jaegertracing/all-in-one:1.46.0
container_name: magistrala-jaeger
ports:
- ${MF_JAEGER_PORT}:${MF_JAEGER_PORT}/udp
- ${MF_JAEGER_FRONTEND}:${MF_JAEGER_FRONTEND}
- ${MF_JAEGER_COLLECTOR}:${MF_JAEGER_COLLECTOR}
- ${MF_JAEGER_CONFIGS}:${MF_JAEGER_CONFIGS}
- ${MG_JAEGER_PORT}:${MG_JAEGER_PORT}/udp
- ${MG_JAEGER_FRONTEND}:${MG_JAEGER_FRONTEND}
- ${MG_JAEGER_COLLECTOR}:${MG_JAEGER_COLLECTOR}
- ${MG_JAEGER_CONFIGS}:${MG_JAEGER_CONFIGS}
networks:
- callhome-base-net

0 comments on commit f704441

Please sign in to comment.