fix: silence docker-compose useless warnings (#28283)
This commit is contained in:
parent
538d1bb245
commit
2b4b771449
|
|
@ -39,7 +39,6 @@ x-common-build: &common-build
|
||||||
cache_from:
|
cache_from:
|
||||||
- apache/superset-cache:3.10-slim-bookworm
|
- apache/superset-cache:3.10-slim-bookworm
|
||||||
|
|
||||||
version: "4.0"
|
|
||||||
services:
|
services:
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx:latest
|
image: nginx:latest
|
||||||
|
|
@ -94,7 +93,7 @@ services:
|
||||||
depends_on: *superset-depends-on
|
depends_on: *superset-depends-on
|
||||||
volumes: *superset-volumes
|
volumes: *superset-volumes
|
||||||
environment:
|
environment:
|
||||||
CYPRESS_CONFIG: "${CYPRESS_CONFIG}"
|
CYPRESS_CONFIG: "${CYPRESS_CONFIG:-}"
|
||||||
|
|
||||||
superset-websocket:
|
superset-websocket:
|
||||||
container_name: superset_websocket
|
container_name: superset_websocket
|
||||||
|
|
@ -144,7 +143,7 @@ services:
|
||||||
user: *superset-user
|
user: *superset-user
|
||||||
volumes: *superset-volumes
|
volumes: *superset-volumes
|
||||||
environment:
|
environment:
|
||||||
CYPRESS_CONFIG: "${CYPRESS_CONFIG}"
|
CYPRESS_CONFIG: "${CYPRESS_CONFIG:-}"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
disable: true
|
disable: true
|
||||||
|
|
||||||
|
|
@ -153,7 +152,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
# set this to false if you have perf issues running the npm i; npm run dev in-docker
|
# set this to false if you have perf issues running the npm i; npm run dev in-docker
|
||||||
# if you do so, you have to run this manually on the host, which should perform better!
|
# if you do so, you have to run this manually on the host, which should perform better!
|
||||||
SCARF_ANALYTICS: "${SCARF_ANALYTICS}"
|
SCARF_ANALYTICS: "${SCARF_ANALYTICS:-}"
|
||||||
container_name: superset_node
|
container_name: superset_node
|
||||||
command: ["/app/docker/docker-frontend.sh"]
|
command: ["/app/docker/docker-frontend.sh"]
|
||||||
env_file:
|
env_file:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue