mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Unfortunately I had to keep `linux-client` to get the compatibility tests to pass. #4578 aims to remove that package. Please add to this list if you think of anything: ```[tasklist] # Things that may break that CI/CD won't catch - [ ] Github release artifacts - [ ] Knowledge base - [ ] Docker images - [ ] Docker containers - [ ] Existing `linux-client` users - [ ] Anything that downloads ghcr artifacts - [ ] Nix (Not sure if it's built in CI. It had a merge conflict) ``` Refs #4515, and #3712, #3782 I think this is what Thomas and I agreed on in Slack / Github --------- Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com> Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
20 lines
505 B
YAML
20 lines
505 B
YAML
# Meant to be used with docker-compose.yml
|
|
services:
|
|
client:
|
|
build:
|
|
target: test
|
|
volumes:
|
|
- ./rust/target/x86_64-unknown-linux-musl/debug/firezone-headless-client:/bin/firezone-headless-client
|
|
|
|
gateway:
|
|
build:
|
|
target: test
|
|
volumes:
|
|
- ./rust/target/x86_64-unknown-linux-musl/debug/firezone-gateway:/bin/firezone-gateway
|
|
|
|
relay:
|
|
build:
|
|
target: test
|
|
volumes:
|
|
- ./rust/target/x86_64-unknown-linux-musl/debug/firezone-relay:/bin/firezone-relay
|