1
0
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:
Gastón Fournier 2025-06-12 09:33:16 +02:00 committed by GitHub
parent 907455fbff
commit e4af0ae15d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -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

View File

@ -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