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...)
- Host: GitHub
- URL: https://github.com/minwook-shin/python-docker-environment
- Owner: minwook-shin
- License: mit
- Created: 2020-11-11T12:17:32.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-11-30T11:13:13.000Z (7 months ago)
- Last Synced: 2025-12-02T15:52:00.729Z (7 months ago)
- Topics: docker-image, jupyterlab, python
- Language: Dockerfile
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```