Skip to content

Commit

Permalink
Move docker compose into devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmorganson committed Mar 28, 2024
1 parent e3ca18a commit d998e17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dotfiles",
"dockerComposeFile": "../docker-compose.yaml",
"dockerComposeFile": "docker-compose.yaml",
"service": "run",
"workspaceFolder": "/workspace"
}
4 changes: 2 additions & 2 deletions docker-compose.yaml → .devcontainer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ services:
depends_on:
- socat
build:
context: .
context: ..
tty: true
stdin_open: true
network_mode: host
environment:
- DOCKER_HOST=localhost:2375
volumes:
- .:/workspace:cached
- ..:/workspace:cached

0 comments on commit d998e17

Please sign in to comment.