mirror of
https://github.com/tiyn/wiki.git
synced 2025-10-30 01:51:14 +01:00
1.4 KiB
1.4 KiB
alexta69 - metube
This is a Docker container for a MeTube
server.
The official container and documentation was made by
alexta69.
This docker-rebuild is made up by a docker-compose.yml file.
Set-up
Create the files rebuild.sh and docker-compose.yml at the same place.
Change the settings according to your needs and run ./rebuild.sh afterwards.
Volumes
Set the following volumes in the volumes: section of the docker-compose file.
| Outside mount/volume name | Container mount | Description |
|---|---|---|
downloads |
/downloads |
folder to download data to |
Ports
Set the following ports in the ports: section.
| Container Port | Recommended outside port | Protocol | Description |
|---|---|---|---|
8881 |
8081 |
TCP | WebUI |
rebuild.sh
#!/bin/sh
docker-compose down
docker pull vim alexta69/metube
docker-compose up -d
docker-compose.yml
version: "3"
services:
metube:
image: alexta69/metube
restart: unless-stopped
ports:
- "8881:8081"
volumes:
- downloads:/downloads
volumes:
downloads:
driver: local