Update docker-compose.yaml.example
This commit is contained in:
parent
84028baa64
commit
f54627e5ff
@ -90,9 +90,9 @@ services:
|
||||
- "./redis/redis.conf:/etc/redis/redis.conf"
|
||||
- "./redis/data:/data/db"
|
||||
- "./logs/redis:/data/logs"
|
||||
command: ["redis-server","/etc/redis/redis.conf"]
|
||||
command: [ "redis-server", "/etc/redis/redis.conf" ]
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
test: [ "CMD", "redis-cli", "ping" ]
|
||||
interval: 1s
|
||||
timeout: 3s
|
||||
retries: 30
|
||||
@ -113,7 +113,13 @@ services:
|
||||
aix-docker-cc:
|
||||
ipv4_address: ${NET_SUBNET:-10.12.25}.73
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "--fail","http://${NET_SUBNET:-10.12.25}.1/ping_73"]
|
||||
test:
|
||||
[
|
||||
"CMD",
|
||||
"curl",
|
||||
"--fail",
|
||||
"http://${NET_SUBNET:-10.12.25}.1/ping_73"
|
||||
]
|
||||
interval: 1s
|
||||
timeout: 3s
|
||||
retries: 30
|
||||
@ -136,7 +142,13 @@ services:
|
||||
aix-docker-cc:
|
||||
ipv4_address: ${NET_SUBNET:-10.12.25}.74
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "--fail","http://${NET_SUBNET:-10.12.25}.1/ping_74"]
|
||||
test:
|
||||
[
|
||||
"CMD",
|
||||
"curl",
|
||||
"--fail",
|
||||
"http://${NET_SUBNET:-10.12.25}.1/ping_74"
|
||||
]
|
||||
interval: 1s
|
||||
timeout: 3s
|
||||
retries: 30
|
||||
@ -157,7 +169,13 @@ services:
|
||||
aix-docker-cc:
|
||||
ipv4_address: ${NET_SUBNET:-10.12.25}.81
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "--fail","http://${NET_SUBNET:-10.12.25}.1/ping_81"]
|
||||
test:
|
||||
[
|
||||
"CMD",
|
||||
"curl",
|
||||
"--fail",
|
||||
"http://${NET_SUBNET:-10.12.25}.1/ping_81"
|
||||
]
|
||||
interval: 1s
|
||||
timeout: 3s
|
||||
retries: 30
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user