-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (54 loc) · 1.28 KB
/
docker-compose.yml
File metadata and controls
55 lines (54 loc) · 1.28 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
53
54
55
version: '3.8'
services:
gateway:
container_name: sht-gateway
platform: linux/amd64
environment:
- DOCKER_DEFAULT_PLATFORM=linux/amd64
env_file:
- backend/_env/.env
- backend/_env/gateway/.env.local
build:
context: './'
dockerfile: backend/docker/gateway/Dockerfile
ports:
- '8005:8005'
# acl:
# container_name: sht-acl
# platform: linux/amd64
# environment:
# - DOCKER_DEFAULT_PLATFORM=linux/amd64
# env_file:
# - _env/.env
# - _env/acl/.env.local
# build:
# context: './'
# dockerfile: ./docker/acl/Dockerfile
# ports:
# - '8006:8006'
# shtner:
# container_name: sht-shtner
# platform: linux/amd64
# environment:
# - DOCKER_DEFAULT_PLATFORM=linux/amd64
# env_file:
# - _env/.env
# - _env/shtner/.env.local
# build:
# context: './'
# dockerfile: ./docker/shtner/Dockerfile
# ports:
# - '8007:8007'
# worker:
# container_name: sht-worker
# platform: linux/amd64
# environment:
# - DOCKER_DEFAULT_PLATFORM=linux/amd64
# env_file:
# - _env/.env
# - _env/worker/.env.local
# build:
# context: './'
# dockerfile: ./docker/worker/Dockerfile
# ports:
# - '8008:800'