-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change devcontainer to docker-compose format
Use local tagged image instead of the 3rd party image
- Loading branch information
1 parent
7022813
commit 95ce8bf
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
{ | ||
"name": "flutter_docker", | ||
"context": "..", | ||
"dockerFile": "../.docker/android-dev.dockerfile", | ||
"dockerComposeFile": "../.docker/docker-compose.yml", | ||
"service": "komodo-wallet-mobile", | ||
"remoteUser": "komodo", | ||
"postAttachCommand": "sh .docker/dev-setup.sh", | ||
"runArgs": [ | ||
"--privileged" | ||
], | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/home/komodo/workspace,type=bind,consistency=delegated", | ||
"workspaceFolder": "/home/komodo/workspace" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
services: | ||
android-sdk: | ||
build: | ||
context: .. | ||
dockerfile: .docker/android-sdk.dockerfile | ||
image: komodo/android-sdk:34 | ||
|
||
komodo-wallet-mobile: | ||
build: | ||
context: .. | ||
dockerfile: .docker/android-dev.dockerfile | ||
image: komodo/komodo-wallet-mobile | ||
volumes: | ||
- ../:/home/komodo/workspace | ||
depends_on: | ||
- android-sdk | ||
command: "/bin/sh -c 'while true; do sleep 1000; done'" |