1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

Work on Minimal Container

This commit is contained in:
Justin Baur 2025-03-11 08:39:18 -04:00
parent 6510f2a3e8
commit ed2452246a
No known key found for this signature in database
6 changed files with 75 additions and 19 deletions

View File

@ -6,23 +6,6 @@ services:
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
bitwarden_mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
platform: linux/amd64
restart: unless-stopped
env_file:
- path: ../../dev/.env
required: false
environment:
ACCEPT_EULA: "Y"
MSSQL_PID: Developer
volumes:
- mssql_dev_data:/var/opt/mssql
- ../../util/Migrator:/mnt/migrator/
- ../../dev/helpers/mssql:/mnt/helpers
- ../../dev/.data/mssql:/mnt/data
network_mode: service:bitwarden_server
bitwarden_mail:
image: sj26/mailcatcher:latest
restart: unless-stopped

View File

@ -6,7 +6,8 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "16"
}
},
"ghcr.io/devcontainers/features/docker-outside-of-docker": {}
},
"mounts": [
{

View File

@ -9,7 +9,8 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "16"
}
},
"ghcr.io/devcontainers/features/docker-outside-of-docker": {}
},
"mounts": [
{

View File

@ -1,4 +1,21 @@
services:
bitwarden_mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
platform: linux/amd64
restart: unless-stopped
env_file:
- path: ../../dev/.env
required: false
environment:
ACCEPT_EULA: "Y"
MSSQL_PID: Developer
volumes:
- mssql_dev_data:/var/opt/mssql
- ../../util/Migrator:/mnt/migrator/
- ../../dev/helpers/mssql:/mnt/helpers
- ../../dev/.data/mssql:/mnt/data
network_mode: service:bitwarden_server
bitwarden_storage:
image: mcr.microsoft.com/azure-storage/azurite:latest
restart: unless-stopped

41
.vscode/tasks.json vendored
View File

@ -251,6 +251,24 @@
"type": "shell",
"command": "dotnet tool install -g dotnet-certificate-tool -g && certificate-tool add --file ${workspaceFolder}/dev/dev.pfx --password '${input:certPassword}'",
"problemMatcher": []
},
{
"label": "Add Docker Compose Profile",
"detail": "Adds a docker compose profile to give your local development setup more abilities.",
"type": "shell",
"command": "bash",
"args": [
"${workspaceFolder}/dev/add-dc-profile.sh",
"${input:dockerComposeProfile}"
],
// If they are on windows, they can't be in a codespace or dev container so we can just run the command directly.
"windows": {
"command": "Write-Output",
"args": [
"Work in progress ${input:dockerComposeProfile}"
]
},
"problemMatcher": []
}
],
"inputs": [
@ -275,6 +293,29 @@
"type": "promptString",
"description": "Password for your dev certificate.",
"password": true
},
{
"id": "dockerComposeProfile",
"type": "pickString",
"description": "The name of the profile to add.",
"options": [
{
"label": "Containers focused towards testing SSO.",
"value": "idp",
},
{
"label": "MySQL",
"value": "mysql"
},
{
"label": "PostgreSQL",
"value": "postgres"
},
{
"label": "Containers focused towards testing Azure",
"value": "storage"
}
]
}
]
}

13
dev/add-dc-profile.sh Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
if [[ -z "${CODESPACES}" ]]; then
if [[ -z "${HOSTNAME}" ]]; then
# Add docker compose profile using local strategy
echo "Locally"
else
# Add docker compose profile to dev container
echo "In DevContainer"
fi
else
# Add docker compose profile to codespace
echo "In Codespaces"
fi