Skip to content

Commit

Permalink
Rename docker-compose.yml to compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
cnk committed Sep 25, 2024
1 parent 10b77d4 commit 22d08b4
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.163.1/containers/docker-existing-docker-compose
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
// If you want to run as a non-root user in the container, see .devcontainer/compose.yaml.
{
"name": "Existing Docker Compose (Extend)",
"dockerComposeFile": [
"../docker-compose.yml",
"docker-compose.yml"
"../compose.yaml",
"compose.yaml"
],
"service": "web",
"workspaceFolder": "/code",
Expand Down
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
**/node_modules
**/Dockerfile
**/docker-compose.yml
**/compose.yaml
**/Procfile
**/Vagrantfile
**/.devcontainer
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ WARNINGS:
If you're running this on Linux you might get into some privilege issues that can be solved using this command (tested on Ubuntu):

```sh
CURRENT_UID=$(id -u):$(id -g) docker compose -f docker-compose.yml -f docker-compose.linux.yml up
CURRENT_UID=$(id -u):$(id -g) docker compose -f compose.yaml -f compose.linux.yaml up
```

Alternatively, if you're using VSCode and have the "Remote - Containers" extension, you can open the command palette and select "Remote Containers - Reopen in Container" to attach VSCode to the container. This allows for much deeper debugging.
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 22d08b4

Please sign in to comment.