zellij/docker-compose.yml
Aram Drevekenin ed4fd2a8e7
chore(tests): move all integration tests to be either unit or e2e tests - remove old testing infra (#589)
* tests(integration): move basic integration tests to be unit tests

* fix(tests): silently fail threadbus for tests

* tests(unit): move compatibility tests to become unit tests for grid

* tests(unit): move close_pane tests to become unit tests for grid

* tests(e2e): move basic layout test to e2e

* tests(unit): move move_focus tests to be unit tests

* tests(unit): move resize_down tests to be unit tests

* tests(unit): move resize_left tests to be unit tests

* tests(unit): move resize_right tests to be unit tests

* tests(unit): move resize_up tests to be unit tests

* tests(infra): remove unused infra

* style(fmt): make rustfmt happy

* debug

* debug

* debug

* debug

* chore(test): shift volume mounting around because github actions is a special child
2021-06-30 11:27:35 +02:00

25 lines
545 B
YAML

---
version: "2.1"
services:
zellij-e2e:
image: ghcr.io/linuxserver/openssh-server
container_name: zellij-e2e
hostname: zellij-e2e
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Vienna
- PASSWORD_ACCESS=true
- USER_PASSWORD=test
- USER_NAME=test
volumes:
- type: bind
source: ./target
target: /usr/src/zellij
- type: bind
source: ./src/tests/fixtures
target: /usr/src/zellij/fixtures
ports:
- 2222:2222
restart: unless-stopped