mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
18 lines
427 B
Markdown
18 lines
427 B
Markdown
# References
|
|
|
|
https://github.com/miroslavpejic85/mirotalk
|
|
|
|
# Notes
|
|
|
|
You have to place the `/app/` and `/public/` directories at your Docker bind volume mounts.
|
|
|
|
````
|
|
git clone https://github.com/miroslavpejic85/mirotalk
|
|
cp -R mirotalk/app/ /mnt/docker-volumes/mirotalk/app
|
|
cp -R mirotalk/public/ /mnt/docker-volumes/mirotalk/public
|
|
rm -rf mirotalk
|
|
|
|
# may move the .env too and adjust compose file
|
|
# then docker compose up
|
|
````
|