2020-09-20 12:58:15 +00:00
|
|
|
---
|
|
|
|
version: '3'
|
|
|
|
services:
|
2020-09-20 18:19:07 +00:00
|
|
|
ft_jupyterlab:
|
2020-09-20 12:58:15 +00:00
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: docker/Dockerfile.jupyter
|
|
|
|
restart: unless-stopped
|
|
|
|
container_name: freqtrade
|
|
|
|
ports:
|
2020-09-20 13:02:07 +00:00
|
|
|
- "127.0.0.1:8888:8888"
|
2020-09-20 12:58:15 +00:00
|
|
|
volumes:
|
2022-09-28 05:21:20 +00:00
|
|
|
- "../user_data:/freqtrade/user_data"
|
2020-09-20 12:58:15 +00:00
|
|
|
# Default command used when running `docker compose up`
|
|
|
|
command: >
|
|
|
|
jupyter lab --port=8888 --ip 0.0.0.0 --allow-root
|