Browse Source

删除无用的文件

dongjh 8 months ago
parent
commit
edecacb826
2 changed files with 0 additions and 76 deletions
  1. 0 42
      docker-compose.yml
  2. 0 34
      docker-stack.yml

+ 0 - 42
docker-compose.yml

@@ -1,42 +0,0 @@
-version: '2'
-services:
-  jeecg-boot-mysql:
-    build:
-      context: ./db
-    environment:
-      MYSQL_ROOT_PASSWORD: root
-      MYSQL_ROOT_HOST: '%'
-      TZ: Asia/Shanghai
-    restart: always
-    container_name: jeecg-boot-mysql
-    image: jeecg-boot-mysql
-    command:
-      --character-set-server=utf8mb4
-      --collation-server=utf8mb4_general_ci
-      --explicit_defaults_for_timestamp=true
-      --lower_case_table_names=1
-      --max_allowed_packet=128M
-      --default-authentication-plugin=caching_sha2_password
-    ports:
-      - 3306:3306
-
-  jeecg-boot-redis:
-    image: redis:5.0
-    ports:
-      - 6379:6379
-    restart: always
-    hostname: jeecg-boot-redis
-    container_name: jeecg-boot-redis
-
-  jeecg-boot-system:
-    build:
-      context: ./jeecg-module-system/jeecg-system-start
-    restart: on-failure
-    depends_on:
-      - jeecg-boot-mysql
-      - jeecg-boot-redis
-    container_name: jeecg-boot-system
-    image: jeecg-boot-system
-    hostname: jeecg-boot-system
-    ports:
-      - 8080:8080

+ 0 - 34
docker-stack.yml

@@ -1,34 +0,0 @@
-# stack 不支持基于第2版写的docker-compose.yml ,version版本至少为3
-version: '3'
-services:
-  redis:
-    image: redis
-    #    ports:
-    #      - 6379:6379
-    restart: always
-    deploy:
-      replicas: 2
-
-  api:
-    restart: on-failure
-    depends_on:
-      - interlock_redis
-    image: registry.cn-hangzhou.aliyuncs.com/interlock/api:1.0
-    #    ports:
-    #      - 8520:8520
-    deploy:
-      replicas: 2
-  #    environment:
-  #      - BACKEND_URL=http://interlockapi:8520
-
-  ui:
-    restart: on-failure
-    depends_on:
-      - interlock_api
-    image: registry.cn-hangzhou.aliyuncs.com/interlock/ui:1.0
-    ports:
-      - 8092:8092
-    deploy:
-      replicas: 3
-#    volumes:
-#      - ./nginx.conf:/etc/nginx/nginx.conf