backstory/docker-compose.yml
2025-03-06 13:48:18 -08:00

32 lines
565 B
YAML

services:
airc:
build:
context: .
dockerfile: Dockerfile
target: airc
image: airc
restart: "no"
env_file:
- .env
devices:
- /dev/dri:/dev/dri
volumes:
- ./cache:/root/.cache
- ./src:/opt/airc/src:rw
jupyter:
build:
context: .
dockerfile: Dockerfile
target: jupyter
image: jupyter
env_file:
- .env
devices:
- /dev/dri:/dev/dri
ports:
- 8888:8888 # Jupyter Notebook
volumes:
- ./jupyter:/opt/jupyter:rw
- ./cache:/root/.cache