Default docker-compose invalid #3
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Investigation
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
spotizerrphoenix/spotizerr-phoenix#3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If I copy and paste the file at https://lavaforge.org/spotizerrphoenix/spotizerr-phoenix/src/branch/main/docker-compose.yaml and try to
docker-compose upI get the following:Thankfully the returned error is very helpful but ideally the docker-compose would just work out of the box (plus or minus any custom mount paths).
I used "docker compose up" and it works well. Did you try to remove the "-" in the command?
@middaymoon you might want to try:
docker compose up -d@lonhdoan wrote in #3 (comment):
That might work. I forgot that docker-compose is deprecated now. I'll mark as closed since it seems reasonable that's the solution. Use an up-to-date version of
dockerand don't bother with the separatedocker-composetool.@spotizerrphoenix the
-disn't related. That's just the flag for running in detached mode. I was purposefully not detaching so I could see the container logs and check for errors.yup, just included that since it sounded like you were just trying to run the compose based on your original post
as you probably know, for running detached containers you can always tail logs with:
docker logs -f --tail 100 {container_name}to prevent confusion for other contributors, next time please clarify or include your full intended purpose in your original post
thank you