| | |
| | | interval: 10s |
| | | timeout: 2s |
| | | retries: 3 |
| | | start_period: 10s |
| | | start_period: 7s |
| | | ports: |
| | | - 8080:8080 |
| | | - 8848:8848 |
| | |
| | | privileged: true |
| | | networks: |
| | | - network-jhs |
| | | restart: always |
| | | #restart: always |
| | | # redis |
| | | redis: |
| | | image: redis:7 |
| | |
| | | image: nginx:1.29 |
| | | ports: |
| | | - 80:80 |
| | | - 443:443 |
| | | environment: |
| | | TZ: Asia/Shanghai |
| | | volumes: |
| | | - ./nginx/logs:/var/log/nginx |
| | | #- ./nginx/conf.d:/etc/nginx/conf.d |
| | | - ./nginx/html:/usr/share/nginx/html |
| | | - ./nginx/conf/conf.d:/etc/nginx/conf.d |
| | | - ./nginx/conf/nginx.conf:/etc/nginx/nginx.conf |
| | | depends_on: |
| | | - gateway |