mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 03:48:35 +01:00
Add instructions on running PokeTube in Docker
This commit is contained in:
parent
0fff4ae62c
commit
89071a3d5d
1 changed files with 21 additions and 1 deletions
22
README.md
22
README.md
|
@ -66,7 +66,7 @@ you can view the source code of the openh264 codec in this repo :3 --> https://g
|
|||
PLEASE NOTE THAT THIS SOFTWARE MAY INCULUDE CODECS THAT IN CERTAIN COUNTRIES MAY BE COVERED BY PATENTS OR HAVE LEGAL ISSUES. PATENT AND COPYRIGHT LAWS OPERATE DIFFERENTLY DEPENDING ON WHICH COUNTRY YOU ARE IN. PLEASE OBTAIN LEGAL ADVICE IF YOU ARE UNSURE WHETHER A PARTICULAR PATENT OR RESTRICTION APPLIES TO A CODEC YOU WISH TO USE IN YOUR COUNTRY.
|
||||
|
||||
## Hosting Poketube~
|
||||
|
||||
### With NodeJS
|
||||
- To self host your own Poketube instance, you'll need the following:
|
||||
|
||||
- [Node.js](https://nodejs.org/en/download/)
|
||||
|
@ -98,6 +98,26 @@ node server.js
|
|||
|
||||
Congrats, Poketube should now be running on `localhost:6003`!
|
||||
|
||||
### With Docker
|
||||
Create a new directory for PokeTube:
|
||||
```
|
||||
mkdir poketube && cd poketube
|
||||
```
|
||||
|
||||
Download the docker compose and config file:
|
||||
```
|
||||
curl -O https://codeberg.org/Ashley/poketube/raw/branch/main/docker-compose.yml
|
||||
```
|
||||
|
||||
Run PokeTube:
|
||||
```
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
PokeTube should be running on `http://localhost:6003`.
|
||||
|
||||
The port can be changed with the config file you downloaded, just change the `server_port` option.
|
||||
|
||||
## PokeTube community!
|
||||
|
||||
Join the community on [revolt](https://rvlt.gg/poketube) :3
|
||||
|
|
Loading…
Reference in a new issue