| | |
| | | - ./nacos/conf/application.properties:/home/nacos/conf/application.properties |
| | | ports: |
| | | - 8848:8848 |
| | | - 9848:9848 |
| | | - 9849:9849 |
| | | # - 9848:9848 |
| | | # - 9849:9849 |
| | | depends_on: |
| | | - se-mysql |
| | | networks: |
| | |
| | | # gateway |
| | | se-gateway: |
| | | image: openjdk:8-jre |
| | | ports: |
| | | - 9204:8080 |
| | | # ports: |
| | | # - 9204:8080 |
| | | volumes: |
| | | - ./gateway:/data |
| | | environment: |
| | |
| | | # auth |
| | | se-auth: |
| | | image: openjdk:8-jre |
| | | ports: |
| | | - 9200:9200 |
| | | # ports: |
| | | # - 9200:9200 |
| | | volumes: |
| | | - ./auth:/data |
| | | environment: |
| | |
| | | # system |
| | | se-system: |
| | | image: openjdk:8-jre |
| | | ports: |
| | | - 9201:9201 |
| | | # ports: |
| | | # - 9201:9201 |
| | | volumes: |
| | | - ./system:/data |
| | | environment: |
| | |
| | | networks: |
| | | - network-se |
| | | restart: always |
| | | # se-file |
| | | se-file: |
| | | image: openjdk:8-jre |
| | | # ports: |
| | | # - 9300:9300 |
| | | volumes: |
| | | - ./file:/data |
| | | environment: |
| | | TZ: Asia/Shanghai |
| | | entrypoint: java -jar /data/se-modules-file.jar --spring.config.location=file:/data/ |
| | | depends_on: |
| | | - se-nacos |
| | | networks: |
| | | - network-se |
| | | restart: always |
| | | # nginx |
| | | se-nginx: |
| | | image: nginx:latest |