Skip to content

Commit

Permalink
chore: bump rustc, downgrade DB (#93)
Browse files Browse the repository at this point in the history
* Bump Rustc, downgrade DB to version that works on OSX

* Use a volume

* Fix benchmark docker file
  • Loading branch information
danieljharvey authored Dec 5, 2023
1 parent 7aceb84 commit 1e3a439
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
1 change: 1 addition & 0 deletions benchmarks/component/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,4 @@ volumes:
benchmark_output:
metrics_output:
prometheus:
mssql_data:
7 changes: 5 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.6"

services:
sqlserver:
image: mcr.microsoft.com/mssql/server:2019-latest
image: mcr.microsoft.com/mssql/server:2017-latest
platform: linux/amd64
ports:
- 64003:1433
Expand All @@ -13,7 +13,9 @@ services:
MSSQL_SA_PASSWORD: "Password!"
SA_PASSWORD: "Password!"
volumes:
- /var/opt/mssql
- type: volume
target: /var/opt/mssql/data
source: mssql_data
- type: bind
read_only: true
source: ./static
Expand Down Expand Up @@ -100,3 +102,4 @@ services:
volumes:
prom_data:
grafana_data:
mssql_data:
24 changes: 12 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.73.0"
channel = "1.74.0"
profile = "default" # see https://rust-lang.github.io/rustup/concepts/profiles.html
components = ["rust-analyzer", "rust-src"] # see https://rust-lang.github.io/rustup/concepts/components.html

0 comments on commit 1e3a439

Please sign in to comment.