| 1234567891011121314151617181920212223242526 |
- version: "3.7"
- services:
- galaxy-micro-service:
- build:
- context: .
- dockerfile: ./Dockerfile
- image: tool-page-service:latest
- container_name: tool-page-service
- healthcheck:
- test: ["CMD-SHELL","curl --fail http://localhost:8080/actuator/health"]
- interval: 10s
- timeout: 5s
- retries: 3
- deploy:
- resources:
- limits:
- memory: 2048M
- ports:
- - "8080:8080"
- restart: always
- networks:
- - backend
- networks:
- backend:
- driver: bridge
|