fe75873865
Former-commit-id: fc1c5be8b911b5e454f83f63fe09ac533615da45 [formerly 14c2d66a4c67fff40006b18807b61f4f8297f7ee] Former-commit-id: 8b2b76c1309f63670f6a717a5e13c8c663ceb8e5
26 lines
438 B
YAML
26 lines
438 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
# development container
|
|
dev:
|
|
container_name: dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ..:/workspace
|
|
stdin_open: true
|
|
# 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
|