mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
851 B
33 lines
851 B
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: public-website
|
|
name: public-website
|
|
spec:
|
|
replicas: 1
|
|
strategy: {}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
io.kompose.service: public-website
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: ASPNETCORE_ENVIRONMENT
|
|
value: Development
|
|
- name: ASPNETCORE_URLS
|
|
value: http://0.0.0.0:80
|
|
- name: AuthServer__Authority
|
|
value: http://auth-server:51511
|
|
- name: Redis__Configuration
|
|
value: redis
|
|
- name: RemoteServices__Default__BaseUrl
|
|
value: http://public-website-gateway/
|
|
image: volosoft/microservice-demo-public-website
|
|
name: public-website
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
restartPolicy: Always
|
|
status: {}
|
|
|