diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml new file mode 100644 index 0000000..c893677 --- /dev/null +++ b/docker-compose.dev.yml @@ -0,0 +1,9 @@ +# Development override for docker-compose +# Usage: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build + +services: + allstarr: + build: + context: . + dockerfile: Dockerfile + image: allstarr:local diff --git a/docker-compose.yml b/docker-compose.yml index f937814..647b453 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,10 +16,18 @@ services: - allstarr-network allstarr: - build: - context: . - dockerfile: Dockerfile - image: allstarr:local + # Use pre-built image from GitHub Container Registry + # For latest stable: ghcr.io/sopat712/allstarr:latest + # For beta/testing: ghcr.io/sopat712/allstarr:beta + # To build locally instead, uncomment the build section below + image: ghcr.io/sopat712/allstarr:latest + + # Uncomment to build locally instead of using GHCR image: + # build: + # context: . + # dockerfile: Dockerfile + # image: allstarr:local + container_name: allstarr restart: unless-stopped ports: