summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: ec52486ee663e4c00705564bd832b9934f62dbed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
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
    ports:
      - 2222:2222
    restart: unless-stopped