Remove unsupported instructions and unnecessary exposed ports.
This commit is contained in:
parent
3e1a481b83
commit
9c2d9e419d
|
@ -20,7 +20,6 @@ services:
|
||||||
image: sia
|
image: sia
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: sia
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- SIA_MODULES=gctwr
|
- SIA_MODULES=gctwr
|
||||||
|
@ -31,8 +30,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
shared:
|
shared:
|
||||||
ipv4_address: 10.0.0.10
|
ipv4_address: 10.0.0.10
|
||||||
expose:
|
|
||||||
- 9980
|
|
||||||
|
|
||||||
caddy:
|
caddy:
|
||||||
build:
|
build:
|
||||||
|
@ -41,7 +38,6 @@ services:
|
||||||
image: caddy
|
image: caddy
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: caddy
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
@ -62,7 +58,6 @@ services:
|
||||||
image: openresty/openresty:1.15.8.3-2-xenial
|
image: openresty/openresty:1.15.8.3-2-xenial
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: nginx
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
@ -76,8 +71,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
shared:
|
shared:
|
||||||
ipv4_address: 10.0.0.30
|
ipv4_address: 10.0.0.30
|
||||||
expose:
|
|
||||||
- 80
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- sia
|
- sia
|
||||||
- health-check
|
- health-check
|
||||||
|
@ -90,7 +83,6 @@ services:
|
||||||
image: webapp
|
image: webapp
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: webapp
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
tty: true
|
tty: true
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -103,7 +95,6 @@ services:
|
||||||
image: handhsake
|
image: handhsake
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: handshake
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- HSD_LOG_CONSOLE=false
|
- HSD_LOG_CONSOLE=false
|
||||||
|
@ -117,8 +108,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
shared:
|
shared:
|
||||||
ipv4_address: 10.0.0.40
|
ipv4_address: 10.0.0.40
|
||||||
expose:
|
|
||||||
- 12037
|
|
||||||
|
|
||||||
handshake-api:
|
handshake-api:
|
||||||
build:
|
build:
|
||||||
|
@ -127,7 +116,6 @@ services:
|
||||||
image: handshake-api
|
image: handshake-api
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: handshake-api
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- HOSTNAME=0.0.0.0
|
- HOSTNAME=0.0.0.0
|
||||||
|
@ -139,8 +127,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
shared:
|
shared:
|
||||||
ipv4_address: 10.0.0.50
|
ipv4_address: 10.0.0.50
|
||||||
expose:
|
|
||||||
- 3100
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- handshake
|
- handshake
|
||||||
|
|
||||||
|
@ -151,7 +137,6 @@ services:
|
||||||
image: health-check
|
image: health-check
|
||||||
deploy:
|
deploy:
|
||||||
mode: global
|
mode: global
|
||||||
container_name: health-check
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker/data/health-check/state:/usr/app/state
|
- ./docker/data/health-check/state:/usr/app/state
|
||||||
|
@ -161,8 +146,6 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- HOSTNAME=0.0.0.0
|
- HOSTNAME=0.0.0.0
|
||||||
- PORTAL_URL=nginx
|
- PORTAL_URL=nginx
|
||||||
expose:
|
|
||||||
- 3100
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- handshake
|
- handshake
|
||||||
- handshake-api
|
- handshake-api
|
||||||
|
|
Reference in New Issue