forked from mxenabled/mx-quickconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (50 loc) · 1.15 KB
/
docker-compose.yml
File metadata and controls
52 lines (50 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: "3.7"
x-backend-variable: &backend-variable
# DOCKER_PROXY_URL: aspnet-core # not working with docker yet
DOCKER_PROXY_URL: node
# DOCKER_PROXY_URL: python
# DOCKER_PROXY_URL: ruby
services:
# aspnet-core:
# build:
# context: .
# dockerfile: mx-platform-aspnet-core/Dockerfile
# entrypoint: sh -c "dotnet mx-platform-aspnet-core.dll"
# env_file: .env
# environment:
# - ASPNETCORE_ENVIRONMENT=development
# image: mx-quickstart-aspnet
# ports:
# - 8000:80
node:
image: mx-quickstart-node
build:
context: .
dockerfile: ./mx-platform-node/Dockerfile
env_file: .env
ports:
- 8001:8000
# python:
# image: mx-quickstart-python
# build:
# context: .
# dockerfile: ./python/Dockerfile
# env_file: .env
# ports:
# - 8000:8000
# ruby:
# image: mx-quickstart-ruby
# build:
# context: .
# dockerfile: ./ruby/Dockerfile
# env_file: .env
# ports:
# - 8000:8000
frontend:
build:
context: .
dockerfile: ./frontend/Dockerfile
ports:
- 3001:3000
environment:
<<: *backend-variable