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:
parent
6510f2a3e8
commit
ed2452246a
@ -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
|
||||
|
@ -6,7 +6,8 @@
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/node:1": {
|
||||
"version": "16"
|
||||
}
|
||||
},
|
||||
"ghcr.io/devcontainers/features/docker-outside-of-docker": {}
|
||||
},
|
||||
"mounts": [
|
||||
{
|
||||
|
@ -9,7 +9,8 @@
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/node:1": {
|
||||
"version": "16"
|
||||
}
|
||||
},
|
||||
"ghcr.io/devcontainers/features/docker-outside-of-docker": {}
|
||||
},
|
||||
"mounts": [
|
||||
{
|
||||
|
@ -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
41
.vscode/tasks.json
vendored
@ -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
13
dev/add-dc-profile.sh
Normal 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
|
Loading…
x
Reference in New Issue
Block a user