diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-12 09:47:13 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-01-13 09:05:22 +0100 |
commit | feaf98d528851d025730b4f220e36f14ff5c29c7 (patch) | |
tree | 599a906d0d1252bb97d56f75f35d23a3a5b21fb3 /support/docker/dev/usage.md | |
parent | f930450a82f25f086186146044737cbef0452fec (diff) | |
download | PeerTube-feaf98d528851d025730b4f220e36f14ff5c29c7.tar.gz PeerTube-feaf98d528851d025730b4f220e36f14ff5c29c7.tar.zst PeerTube-feaf98d528851d025730b4f220e36f14ff5c29c7.zip |
Remove docker images I can't maintain
Diffstat (limited to 'support/docker/dev/usage.md')
-rw-r--r-- | support/docker/dev/usage.md | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/support/docker/dev/usage.md b/support/docker/dev/usage.md deleted file mode 100644 index 319d7db30..000000000 --- a/support/docker/dev/usage.md +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | ### Usage | ||
2 | 1. Build the image: | ||
3 | ``` | ||
4 | docker build -t my_peertube_dev . | ||
5 | ``` | ||
6 | 1. Start the container: | ||
7 | ``` | ||
8 | docker run -d -i -p 3000:3000 -p 9000:9000 --name peertube my_peertube_dev | ||
9 | ``` | ||
10 | This will create a new Docker volume containing PeerTube sources. | ||
11 | |||
12 | 1. Start PeerTube inside the container: | ||
13 | ``` | ||
14 | docker exec -it peertube npm run dev | ||
15 | ``` | ||
16 | 1. In another window, find the path to the Docker volume | ||
17 | ``` | ||
18 | docker inspect peertube | less +/Mounts | ||
19 | ``` | ||
20 | You can now make changes to the files. They should be automatically recompiled. | ||