mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 22:42:02 +00:00
25 lines
422 B
YAML
25 lines
422 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
|
||
|
# development container
|
||
|
development:
|
||
|
container_name: dev
|
||
|
hostname: dev
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
volumes:
|
||
|
- ..:/workspace
|
||
|
stdin_open: true
|
||
|
|
||
|
# wandb dashboard
|
||
|
wandb:
|
||
|
image: wandb/local
|
||
|
container_name: wandb-local
|
||
|
hostname: wandb-local
|
||
|
volumes:
|
||
|
- /media/disk2/lfainsin/wandb-local/:/vol
|
||
|
ports:
|
||
|
- 8080:8080
|