main
Namekuji 2023-04-28 13:32:50 -04:00
rodzic d52ae18c44
commit c40fb71147
3 zmienionych plików z 10 dodań i 6 usunięć

Wyświetl plik

@ -6,7 +6,7 @@
// "image": "mcr.microsoft.com/devcontainers/universal:2-linux"
"dockerComposeFile": "docker-compose.dev.yaml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"workspaceFolder": "/audon-go",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
@ -30,11 +30,12 @@
"golang.go",
"Vue.volar",
"esbenp.prettier-vscode",
"EditorConfig.EditorConfig"
"EditorConfig.EditorConfig",
"ms-azuretools.vscode-docker"
]
}
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"remoteUser": "root"
}

Wyświetl plik

@ -2,10 +2,12 @@ version: '3.1'
services:
devcontainer:
image: "mcr.microsoft.com/devcontainers/base:jammy"
image: "mcr.microsoft.com/devcontainers/base:debian"
volumes:
- ../..:/workspaces:cached
- ..:/audon-go:cached
command: sleep infinity
environment:
- "DOCKER_HOST=unix:///run/user/1000/docker.sock"
db:
image: mongo:6

1
.gitignore vendored
Wyświetl plik

@ -66,6 +66,7 @@ build/Release
# Dependency directories
node_modules/
jspm_packages/
.pnpm-store/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/