mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Add docker-compose file for "easy deployment"
This commit is contained in:
parent
3fab329080
commit
6f0fa29cae
12
README.md
12
README.md
|
@ -4,7 +4,7 @@ Freqtrade UI build with [Vue.js](https://vuejs.org/) and [boostrap-vue](https://
|
||||||
|
|
||||||
## WARNING
|
## WARNING
|
||||||
|
|
||||||
This project is still in it's early stages, and is not yet stable nor recommended to be used for productiion usages.
|
This project is still in it's early stages (consider it early-alpha), and is not yet stable nor recommended to be used for production usages.
|
||||||
|
|
||||||
It will require Freqtrade to be running on the same host with the API enabled under (`localhost:8081`). This port can be changed in `vue.config.js`.
|
It will require Freqtrade to be running on the same host with the API enabled under (`localhost:8081`). This port can be changed in `vue.config.js`.
|
||||||
|
|
||||||
|
@ -33,5 +33,15 @@ npm run build
|
||||||
npm run lint
|
npm run lint
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Build and run docker version
|
||||||
|
|
||||||
|
```
|
||||||
|
docker-compose build
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
# Access using http://localhost:8080/
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Customize configuration
|
### Customize configuration
|
||||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||||
|
|
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
version: '3.8'
|
||||||
|
services:
|
||||||
|
frequi:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: "./Dockerfile"
|
||||||
|
image: frequi
|
||||||
|
# image: freqtradeorg/frequi:master
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
Loading…
Reference in New Issue
Block a user