commit 0ce99febefb446c47ee7539ed191d8fbfd916daa Author: stephane.david Date: Sun Mar 30 17:55:46 2025 +0200 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d6d4fae --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +services: + metube: + container_name: MeTube + image: ghcr.io/alexta69/metube + healthcheck: + test: curl -f http://localhost:8081/ || exit 1 + mem_limit: 6g + cpu_shares: 768 + security_opt: + - no-new-privileges:true + restart: on-failure:5 + ports: + - "5992:8081" + volumes: + - /var/lib/docker/volumes/metube:/downloads:rw + environment: + UID: 1000 + GID: 1000 \ No newline at end of file