this post was submitted on 02 Jun 2024
3 points (66.7% liked)
Docker
39 readers
1 users here now
Docker is an open-source project to easily create lightweight, portable, self-sufficient containers from any application. The same container that a developer builds and tests on a laptop can run at scale, in production, on VMs, bare metal, OpenStack clusters, public clouds and more.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I took the dockerfile from https://github.com/linuxserver/docker-headphones/blob/master/Dockerfile
Updated it to look like
Saved it and ran
docker build -t headphones /headphones/
And expected it to work ๐ซฃ
Yup, youll need the patches and root folders alongside the dockerfile at a minimum. Those COPY lines expect them. Clone is the way to go.
Thank you so much. Waking up to this is chef's kiss. Thank you again!