mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
Improve .devcontainer to use use devcontainer image and .vscode
This commit is contained in:
parent
a08c038c9c
commit
9087dd9210
@ -1,4 +1 @@
|
|||||||
# Update the VARIANT arg to pick an Elixir version: latest, 1.11.4, etc.
|
FROM ghcr.io/processone/devcontainer:latest
|
||||||
ARG VARIANT=latest
|
|
||||||
|
|
||||||
FROM ghcr.io/processone/elixir:${VARIANT}
|
|
||||||
|
@ -1,48 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ejabberd",
|
"name": "ejabberd",
|
||||||
// "dockerComposeFile": "docker-compose.yml",
|
"build": {"dockerfile": "Dockerfile"},
|
||||||
"build": {
|
"extensions": ["erlang-ls.erlang-ls"],
|
||||||
"dockerfile": "Dockerfile",
|
"postCreateCommand": ".devcontainer/prepare-container.sh",
|
||||||
"args": {
|
"remoteUser": "vscode"
|
||||||
"VARIANT": "latest" // 1.11.4
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"workspaceFolder": "/workspace",
|
|
||||||
|
|
||||||
// Set *default* container specific settings.json values on container create.
|
|
||||||
"settings": {
|
|
||||||
"terminal.integrated.defaultProfile.linux": "/bin/zsh",
|
|
||||||
},
|
|
||||||
|
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
|
||||||
"extensions": ["pgourlain.erlang", "jakebecker.elixir-ls"],
|
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
||||||
"forwardPorts": [5222, 5280, 5269],
|
|
||||||
|
|
||||||
// Use 'postCreateCommand' to run commands after the container is created.
|
|
||||||
// "postCreateCommand": "sh .devcontainer/post-create.sh",
|
|
||||||
|
|
||||||
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
|
|
||||||
"remoteUser": "vscode",
|
|
||||||
"portsAttributes": {
|
|
||||||
"1883": {
|
|
||||||
"label": "MQTT"
|
|
||||||
},
|
|
||||||
"5222": {
|
|
||||||
"label": "XMPP C2S"
|
|
||||||
},
|
|
||||||
"5223": {
|
|
||||||
"label": "Legacy XMPP C2S"
|
|
||||||
},
|
|
||||||
"5269": {
|
|
||||||
"label": "XMPP S2S"
|
|
||||||
},
|
|
||||||
"5280": {
|
|
||||||
"label": "ejabberd HTTP"
|
|
||||||
},
|
|
||||||
"5443": {
|
|
||||||
"label": "ejabberd HTTPS"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
ejabberd:
|
|
||||||
image: ejabberd/ecs
|
|
||||||
ports:
|
|
||||||
- 5222:5222
|
|
||||||
- 5223:5223
|
|
||||||
- 5269:5269
|
|
||||||
- 5280:5280
|
|
||||||
- 1883:1883
|
|
3
.devcontainer/prepare-container.sh
Executable file
3
.devcontainer/prepare-container.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
echo "export PATH=/workspaces/ejabberd/_build/relive:$PATH" >>$HOME/.bashrc
|
||||||
|
echo "COOKIE" >$HOME/.erlang.cookie
|
||||||
|
chmod 400 $HOME/.erlang.cookie
|
Loading…
Reference in New Issue
Block a user