we have compose file like the following
services:
redis:
restart: always
image: redis:7-alpine
entrypoint: /usr/bin/docker-entrypoint.sh
volumes:
- redis-data:/data
# healthcheck:
# test: "redis-cli ping"
# interval: 5s
# retries: 20
ports:
- "6379:6379"
The container-compose tries to mount ~/.containers/Volumes/misskey/redis-data:/ results no entry point error.
Container compose should mount ~/.containers/Volumes/misskey/redis-data to /data instead
|
let destinationUrl = URL(fileURLWithPath: destination).deletingLastPathComponent() |
|
let destinationPath = destinationUrl.path(percentEncoded: false) |
I think this line causes the problem but I could not find why deletingLastPathComponent is added there
we have compose file like the following
The container-compose tries to mount
~/.containers/Volumes/misskey/redis-data:/results no entry point error.Container compose should mount
~/.containers/Volumes/misskey/redis-datato/datainsteadContainer-Compose/Sources/Container-Compose/Commands/ComposeUp.swift
Lines 738 to 739 in 8c5b816
I think this line causes the problem but I could not find why
deletingLastPathComponentis added there