Browse Source

remove client container from docker-compose

pull/319/head
cKey 4 years ago
parent
commit
7b18599cfb
  1. 37
      docker-compose.override.windows.yml
  2. 5
      docker-compose.override.yml
  3. 6
      docker-compose.yml

37
docker-compose.override.windows.yml

@ -4,60 +4,60 @@ services:
identity-server-sts: identity-server-sts:
build: build:
context: ./aspnet-core/services/Publish/identityserver context: ./aspnet-core/services/Publish/identityserver
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\ids-sts:/app/Logs - D:\Projects\Development\Abp\Application\logs\ids-sts:/app/Logs
restart: always restart: always
identity-server-admin: identity-server-admin:
build: build:
context: ./aspnet-core/services/Publish/identityserver4-admin context: ./aspnet-core/services/Publish/identityserver4-admin
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\ids-admin:/app/Logs - D:\Projects\Development\Abp\Application\logs\ids-admin:/app/Logs
depends_on: depends_on:
- identity-server-sts - identity-server-sts
restart: always restart: always
admin-service: admin-service:
build: build:
context: ./aspnet-core/services/Publish/admin context: ./aspnet-core/services/Publish/admin
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\backend-admin:/app/Logs - D:\Projects\Development\Abp\Application\logs\backend-admin:/app/Logs
depends_on: depends_on:
- identity-server-sts - identity-server-sts
restart: always restart: always
localization-service: localization-service:
build: build:
context: ./aspnet-core/services/Publish/localization context: ./aspnet-core/services/Publish/localization
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\localization:/app/Logs - D:\Projects\Development\Abp\Application\logs\localization:/app/Logs
restart: always restart: always
platform-service: platform-service:
build: build:
context: ./aspnet-core/services/Publish/platform context: ./aspnet-core/services/Publish/platform
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\platform:/app/Logs - D:\Projects\Development\Abp\Application\logs\platform:/app/Logs
- D:\Projects\Development\Abp\Application\data\platform:/app/file-blob-storing - D:\Projects\Development\Abp\Application\data\platform:/app/file-blob-storing
depends_on: depends_on:
- identity-server-sts - identity-server-sts
restart: always restart: always
messages-service: messages-service:
build: build:
context: ./aspnet-core/services/Publish/messages context: ./aspnet-core/services/Publish/messages
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\messages:/app/Logs - D:\Projects\Development\Abp\Application\logs\messages:/app/Logs
depends_on: depends_on:
- identity-server-sts - identity-server-sts
restart: always restart: always
apigateway-admin-service: apigateway-admin-service:
build: build:
context: ./aspnet-core/services/Publish/apigateway-admin context: ./aspnet-core/services/Publish/apigateway-admin
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\apigateway-admin:/app/Logs - D:\Projects\Development\Abp\Application\logs\apigateway-admin:/app/Logs
depends_on: depends_on:
- identity-server-sts - identity-server-sts
- admin-service - admin-service
restart: always restart: always
@ -65,20 +65,15 @@ services:
apigateway-host-service: apigateway-host-service:
build: build:
context: ./aspnet-core/services/Publish/apigateway-host context: ./aspnet-core/services/Publish/apigateway-host
volumes: volumes:
- D:\Projects\Development\Abp\Application\logs\apigateway-host:/app/Logs - D:\Projects\Development\Abp\Application\logs\apigateway-host:/app/Logs
depends_on: depends_on:
- identity-server-sts - identity-server-sts
- apigateway-admin-service - apigateway-admin-service
restart: always restart: always
abp-vue-admin-client:
build:
context: ./aspnet-core/services/Publish/client
restart: always
volumes: volumes:
dbdata: dbdata:
networks: networks:
linyun-abp: linyun-abp:

5
docker-compose.override.yml

@ -73,11 +73,6 @@ services:
- apigateway-admin-service - apigateway-admin-service
restart: always restart: always
abp-vue-admin-client:
build:
context: ./aspnet-core/services/Publish/client
restart: always
volumes: volumes:
dbdata: dbdata:

6
docker-compose.yml

@ -28,7 +28,7 @@ services:
- ASPNETCORE_URLS=http://0.0.0.0:80 - ASPNETCORE_URLS=http://0.0.0.0:80
ports: ports:
- "30025:80" - "30025:80"
messages-service: messages-service:
environment: environment:
- ASPNETCORE_ENVIRONMENT=Production - ASPNETCORE_ENVIRONMENT=Production
@ -56,7 +56,3 @@ services:
- ASPNETCORE_URLS=http://0.0.0.0:80 - ASPNETCORE_URLS=http://0.0.0.0:80
ports: ports:
- "30000:80" - "30000:80"
abp-vue-admin-client:
ports:
- "40000:80"

Loading…
Cancel
Save