18 lines
410 B
YAML
18 lines
410 B
YAML
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 |