mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +02:00
fix(2-3599): docker compose file should use default command from the image (#10124)
Also remove the version which is deprecated Fixes #10122
This commit is contained in:
parent
907455fbff
commit
e4af0ae15d
@ -1,4 +1,4 @@
|
|||||||
ARG NODE_VERSION=22.15.0-alpine3.21
|
ARG NODE_VERSION=22.15.1-alpine3.21
|
||||||
|
|
||||||
FROM node:$NODE_VERSION AS builder
|
FROM node:$NODE_VERSION AS builder
|
||||||
|
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
# This is intended to be used for demo, development, and learning
|
# This is intended to be used for demo, development, and learning
|
||||||
# purposes only.
|
# purposes only.
|
||||||
|
|
||||||
version: "3.9"
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
# The Unleash server contains the Unleash configuration and
|
# The Unleash server contains the Unleash configuration and
|
||||||
@ -33,7 +32,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
db:
|
db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
command: [ "node", "index.js" ]
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: wget --no-verbose --tries=1 --spider http://localhost:4242/health || exit 1
|
test: wget --no-verbose --tries=1 --spider http://localhost:4242/health || exit 1
|
||||||
interval: 1s
|
interval: 1s
|
||||||
|
Loading…
Reference in New Issue
Block a user