Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# To use this docker-compose.yml, run `docker compose up`. If you want to make
# it run in the background, you instead run `docker compose up -d`.
name: sds_env # compose project name
services:
sds_2024:
# Using platform condition to handle different architectures
# for m chips, run `DOCKER_IMAGE=jreades/sds:2024-silicon docker compose up -d`
# for other platforms, no DOCKER_IMAGE need to be set, run `docker compose up -d`
image: ${DOCKER_IMAGE:-jreades/sds:2024-intel}
container_name: sds2024
ports:
- 8888:8888
volumes:
- .:/home/jovyan/work
command: >
start.sh jupyter lab --LabApp.password='' --ServerApp.password='' --NotebookApp.token=''
# Remove container when stopped
restart: "no"