Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove latest tags #2356

Merged
merged 1 commit into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
restart: always
expose:
- 27017

mongo-express:
image: mongo-express:1.0.0-alpha.4
expose:
Expand Down Expand Up @@ -183,7 +183,7 @@ services:
- "5007:5007"
volumes:
- ./guardian-service/tls:/usr/local/guardian-service/tls:ro
- ./guardian-service/configs:/usr/local/guardian-service/configs:ro
- ./guardian-service/configs:/usr/local/guardian-service/configs:ro
depends_on:
- mongo
- message-broker
Expand Down Expand Up @@ -248,7 +248,7 @@ services:
- mongo-express

prometheus:
image: prom/prometheus:latest
image: prom/prometheus:2.44.0
container_name: prometheus
restart: unless-stopped
volumes:
Expand All @@ -266,7 +266,7 @@ services:
- monitoring

grafana:
image: grafana/grafana
image: grafana/grafana:10.0.0
container_name: grafana
volumes:
- grafana_data:/var/lib/grafana
Expand Down
2 changes: 1 addition & 1 deletion web-proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY --from=interfacesModuleBuilder /usr/local/interfaces/guardian-interfaces-*.
RUN npm install guardian-interfaces-*.tgz
RUN npm run build

FROM nginx:latest
FROM nginx:1.25.1
ENV PLATFORM="docker"
COPY ./web-proxy/configs/default.conf /etc/nginx/conf.d/default.conf
COPY --from=frontendBuilder /usr/local/frontend/dist/guardian /usr/share/nginx/html
Expand Down
2 changes: 1 addition & 1 deletion web-proxy/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN npm install /usr/interfaces/guardian-interfaces-*.tgz
RUN npm install
RUN npm run build:prod

FROM nginx:latest
FROM nginx:1.25.1
ENV PLATFORM="docker"
COPY ./web-proxy/configs/image.conf /etc/nginx/templates/default.conf.template
COPY --from=frontendBuilder /usr/local/frontend/dist/guardian /usr/share/nginx/html
Expand Down
2 changes: 1 addition & 1 deletion web-proxy/Dockerfile.demo
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN npm install /usr/interfaces/guardian-interfaces-*.tgz
RUN npm install
RUN npm run build:demo

FROM nginx:latest
FROM nginx:1.25.1
ENV PLATFORM="docker"
COPY ./web-proxy/configs/demo.conf /etc/nginx/templates/default.conf.template
COPY --from=frontendBuilder /usr/local/frontend/dist/guardian /usr/share/nginx/html
Expand Down