18 lines
400 B
YAML
18 lines
400 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: always
|
|
ports:
|
|
- "5992:8081"
|
|
volumes:
|
|
- /network/Datas/_ToDownload:/downloads:rw
|
|
environment:
|
|
UID: 1000
|
|
GID: 1000 |