2022-09-07 08:45:01 +00:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
# development container
|
|
|
|
dev:
|
|
|
|
container_name: dev
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
volumes:
|
|
|
|
- ..:/workspace
|
|
|
|
stdin_open: true
|
2022-09-13 07:43:03 +00:00
|
|
|
# network_mode: service:wandb
|
|
|
|
|
|
|
|
# wandb dashboard
|
|
|
|
wandb:
|
|
|
|
hostname: wandb-local
|
|
|
|
container_name: wandb-local
|
|
|
|
image: wandb/local
|
|
|
|
volumes:
|
|
|
|
- ./wandb-local/:/vol
|
|
|
|
ports:
|
|
|
|
- 8080:8080
|
|
|
|
restart: unless-stopped
|