file fix
Some checks failed
github / Analyze (go) (push) Has been cancelled
github / Analyze (actions) (push) Has been cancelled
github / Analyze (javascript-typescript) (push) Has been cancelled
make / build-apps (push) Has been cancelled
make / probo-agent (darwin/amd64) (push) Has been cancelled
make / probo-agent (freebsd/amd64) (push) Has been cancelled
make / probo-agent (linux/amd64) (push) Has been cancelled
make / probo-agent (windows/amd64) (push) Has been cancelled
make / probo-agent (darwin/arm64) (push) Has been cancelled
make / probo-agent (freebsd/arm64) (push) Has been cancelled
make / probo-agent (linux/arm64) (push) Has been cancelled
make / probo-agent (windows/arm64) (push) Has been cancelled
make / build-probod (push) Has been cancelled
make / build-probo-agent (push) Has been cancelled
make / lint-go (push) Has been cancelled
make / lint-js (push) Has been cancelled
make / lint-swift (push) Has been cancelled
make / lint-shell (push) Has been cancelled
make / test (push) Has been cancelled
make / test-e2e (push) Has been cancelled
trufflehog / scan (push) Has been cancelled
make / probod binary (darwin/amd64) (push) Has been cancelled
make / probod binary (freebsd/amd64) (push) Has been cancelled
make / probod binary (linux/amd64) (push) Has been cancelled
make / probod binary (openbsd/amd64) (push) Has been cancelled
make / probod binary (windows/amd64) (push) Has been cancelled
make / probod binary (darwin/arm64) (push) Has been cancelled
make / probod binary (freebsd/arm64) (push) Has been cancelled
make / probod binary (linux/arm64) (push) Has been cancelled
make / probod binary (openbsd/arm64) (push) Has been cancelled
make / docker (amd64) (push) Has been cancelled
make / docker (arm64) (push) Has been cancelled
make / snapshot-scan (push) Has been cancelled

This commit is contained in:
2026-08-01 23:03:32 +05:30
parent 09b175ba0f
commit 79ab12c6d6

View File

@@ -104,7 +104,6 @@ services:
expose:
- "5432"
volumes:
- "./compose/postgres:/docker-entrypoint-initdb.d:ro"
- "postgres-data-prod:/var/lib/postgresql/data:rw"
environment:
POSTGRES_USER: "postgres"
@@ -158,10 +157,32 @@ volumes:
seaweedfs-data:
configs:
# Read fresh from the repo on every `up`, then mounted as a real file in
# the container (not a host bind mount). Avoids the classic Docker footgun
# where a bind-mounted file whose host source doesn't exist yet at
# container-creation time gets silently auto-created as a directory
# instead — which is what caused "s3.json: is a directory" here.
# Inlined (not `file:`) because Coolify only deploys this compose file
# itself into its artifacts directory — sibling repo files like
# compose/seaweedfs/s3.json aren't present there, so any reference to an
# external path (bind mount or `configs.file:`) fails with "source path
# does not exist". Keeping the content inline makes this file
# self-contained regardless of what the deploy environment checks out.
seaweedfs_s3_json:
file: ./compose/seaweedfs/s3.json
content: |
{
"identities": [
{
"name": "probod",
"credentials": [
{
"accessKey": "probod",
"secretKey": "thisisnotasecret"
}
],
"actions": [
"Admin",
"Read",
"Write",
"List",
"Tagging",
"Lock"
]
}
]
}