Merge branch 'update-readme' into 'develop'

Update README with missing instructions

See merge request ekzyis/musicube!30
This commit is contained in:
ekzyis 2023-01-27 21:52:30 +00:00
commit 98927b1e3a
2 changed files with 6 additions and 1 deletions

View File

@ -14,3 +14,6 @@ build:
--build-arg DISCORD_LOG_CHANNEL_CLEAR_ON_STARTUP=${DISCORD_LOG_CHANNEL_CLEAR_ON_STARTUP} \ --build-arg DISCORD_LOG_CHANNEL_CLEAR_ON_STARTUP=${DISCORD_LOG_CHANNEL_CLEAR_ON_STARTUP} \
-t musicube:${GIT_COMMIT} -t musicube:latest \ -t musicube:${GIT_COMMIT} -t musicube:latest \
. .
run:
docker run --rm --detach --name musicube musicube:latest

View File

@ -20,6 +20,7 @@ Install requirements:
``` ```
$ pip install -r requirements.txt $ pip install -r requirements.txt
$ pacman -S ffmpeg
``` ```
Configure ENV: Configure ENV:
@ -54,11 +55,12 @@ There is NO WARRANTY, to the extent permitted by law.
Build image: Build image:
``` ```
$ cp .env docker.env
$ make build $ make build
``` ```
Run image: Run image:
``` ```
$ docker run --rm --detach --name musicube musicube:latest $ make run
``` ```