An open API service indexing awesome lists of open source software.

https://github.com/minwook-shin/python-docker-environment

Docker image of my Python development environment (python, Jupyterlab...)
https://github.com/minwook-shin/python-docker-environment

docker-image jupyterlab python

Last synced: about 2 months ago
JSON representation

Docker image of my Python development environment (python, Jupyterlab...)

Awesome Lists containing this project

README

          

# python-docker-environment
Docker image of my Python development environment

## custom build example

pure python 3.13.9

```yaml
version: '3.8'
services:
python:
build:
context: .
args:
TIMEZONE: Asia/Seoul
PYTHON_VERSION: "3.13.9"
PYTHON_PACKAGE: "requests"
restart: always
```

jupyterlab (python 3.13.9)

```yaml
version: '3.8'
services:
jupyterlab:
build:
context: .
dockerfile: jupyter.Dockerfile
args:
TIMEZONE: Asia/Seoul
PYTHON_VERSION: "3.13.9"
PYTHON_PACKAGE: "jupyterlab"
DEBIAN_PACKAGE: "nodejs npm"
ports:
- 8888:8888
volumes:
- .:/data
restart: always
command: "jupyter lab --ip=* --port=8888 --no-browser --notebook-dir=/data --allow-root"
```