Add initial docker-compose
This commit is contained in:
parent
115bc6bc27
commit
3d99843135
|
@ -16,6 +16,7 @@ steps:
|
||||||
# C# frontend
|
# C# frontend
|
||||||
# upload docker
|
# upload docker
|
||||||
- name: upload_frontend
|
- name: upload_frontend
|
||||||
|
image: plugins/docker
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
version: "3.4"
|
||||||
|
services:
|
||||||
|
frontend:
|
||||||
|
image: registry.jacknet.io/51m0n/environment-frontend:latest
|
||||||
|
|
||||||
|
database:
|
||||||
|
image: mongodb:latest
|
||||||
|
|
||||||
|
apiserver:
|
||||||
|
image: registry.jacknet.io/51m0n/environment-api:latest
|
||||||
|
|
||||||
|
proxy:
|
||||||
|
image: nginx:latest
|
||||||
|
|
Loading…
Reference in New Issue