-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add devcontainers #7
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Image tag should match package.json > @playwright/test | ||
FROM mcr.microsoft.com/playwright:v1.49.1-jammy | ||
|
||
RUN apt update && \ | ||
apt install sudo && \ | ||
usermod -aG sudo pwuser && \ | ||
echo "%sudo ALL=(ALL) NOPASSWD:ALL" | tee -a /etc/sudoers > /dev/null | ||
|
||
RUN chown pwuser:pwuser -R /home/pwuser | ||
USER pwuser |
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,41 @@ | ||
# Devcontainers | ||
|
||
Use [Devcontainers](https://code.visualstudio.com/docs/devcontainers/containers) to prepare a fully automated working environment. | ||
|
||
Generate the `devcontainer.json` executing: | ||
|
||
```shell | ||
.devcontainer/generate_devcontainer.sh | ||
``` | ||
|
||
Now you should see the file `.devcontainer/devcontainer.json`. At this point you can use your favorite IDE to run Devcontainers | ||
|
||
## VSCode | ||
|
||
Install the extension https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers | ||
|
||
To open the repository with DevContainers do `Ctrl + Shift + P` and enter `Dev Containers: Rebuild and Reopen in Container`. For more options see the Extension documentations. | ||
|
||
### Docker | ||
|
||
Docker defaults should work fine therefore there is nothing to do. | ||
|
||
### Podman | ||
|
||
Start Podman service for a regular user (rootless) and make it listen to a socket: | ||
|
||
```shell | ||
systemctl --user enable --now podman.socket | ||
``` | ||
|
||
Restart your OS if necessary and verify that podman listens: | ||
|
||
```shell | ||
systemctl --user status podman.socket | ||
``` | ||
|
||
Go to the Extension Settings: | ||
|
||
- `Dev › Containers: Docker Compose Path` set `podman-compose` | ||
- `Dev › Containers: Docker Path` set `podman` | ||
- `Dev › Containers: Docker Socket Path` set `/run/podman/podman.sock` | ||
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,4 @@ | ||
#!/bin/bash | ||
|
||
HOSTNAME=$(hostname) | ||
envsubst '${HOSTNAME}' < template.json > devcontainer.json |
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,44 @@ | ||
{ | ||
"name": "trustify-ui-tests", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"runArgs": [ | ||
"--privileged", | ||
"--userns=keep-id", | ||
"--network=host", | ||
"--add-host=${HOSTNAME}:127.0.0.1", | ||
"-e DISPLAY=:2" | ||
], | ||
"remoteUser": "pwuser", | ||
"features": { | ||
"ghcr.io/devcontainers/features/desktop-lite:1": { | ||
"VNC_RESOLUTION": "1920x1200x16" | ||
} | ||
}, | ||
"forwardPorts": [6080, 5901], | ||
"portsAttributes": { | ||
"6080": { | ||
"label": "browser vnc" | ||
}, | ||
"5901": { | ||
"label": "real vnc" | ||
} | ||
}, | ||
"onCreateCommand": "npx playwright install-deps && npx playwright install", | ||
"postCreateCommand": "npm ci", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"k--kato.intellij-idea-keybindings", | ||
"vadimcn.vscode-lldb", | ||
"ms-playwright.playwright", | ||
"github.vscode-pull-request-github", | ||
"GitHub.github-vscode-theme", | ||
"esbenp.prettier-vscode", | ||
"oderwat.indent-rainbow", | ||
"eamodio.gitlens" | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -3,3 +3,5 @@ node_modules/ | |
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ | ||
|
||
.devcontainer/devcontainer.json |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please add a step on running a devcontainer in vscode like "ctrl+shift+p" to open command palette and enter "Dev Containers: Rebuild and Reopen in Container"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added, thanks