fix cache_dir in main.py
This commit is contained in:
12
README.md
12
README.md
@@ -19,22 +19,26 @@ You can experience their great online services [here](https://cleanup.pictures/)
|
||||
- Build: `yarn build`
|
||||
|
||||
## Docker
|
||||
Run within a Docker container. Set the `cache_dir` to models location path.
|
||||
|
||||
Run within a Docker container. Set the `CACHE_DIR` to models location path.
|
||||
Optionally add a `-d` option to the `docker run` command below to run as a daemon.
|
||||
|
||||
### Build Docker image
|
||||
|
||||
```
|
||||
docker build -f Dockerfile -t lamacleaner .
|
||||
```
|
||||
|
||||
### Run Docker (cpu)
|
||||
|
||||
```
|
||||
docker run -p 8080:8080 -e cache_dir=/app/models -v $(pwd)/models:/app/models -v $(pwd):/app --rm lamacleaner python3 main.py --device=cpu --port=8080
|
||||
docker run -p 8080:8080 -e CACHE_DIR=/app/models -v $(pwd)/models:/app/models -v $(pwd):/app --rm lamacleaner python3 main.py --device=cpu --port=8080
|
||||
```
|
||||
|
||||
### Run Docker (gpu)
|
||||
|
||||
```
|
||||
docker run --gpus all -p 8080:8080 -e cache_dir=/app/models -v $(pwd)/models:/app/models -v $(pwd):/app --rm lamacleaner python3 main.py --device=cuda --port=8080
|
||||
docker run --gpus all -p 8080:8080 -e CACHE_DIR=/app/models -v $(pwd)/models:/app/models -v $(pwd):/app --rm lamacleaner python3 main.py --device=cuda --port=8080
|
||||
```
|
||||
|
||||
Then open [http://localhost:8080](http://localhost:8080)
|
||||
Then open [http://localhost:8080](http://localhost:8080)
|
||||
|
||||
Reference in New Issue
Block a user