mirror of
https://github.com/moul/sshportal.git
synced 2025-01-11 18:08:42 +08:00
19 lines
301 B
YAML
19 lines
301 B
YAML
|
version: '3.0'
|
||
|
|
||
|
services:
|
||
|
sshportal:
|
||
|
image: moul/sshportal
|
||
|
environment:
|
||
|
- SSHPORTAL_DEFAULT_ADMIN_INVITE_TOKEN=integration
|
||
|
command: server --debug
|
||
|
ports:
|
||
|
- 2222
|
||
|
|
||
|
client:
|
||
|
build: .
|
||
|
depends_on:
|
||
|
- sshportal
|
||
|
#volumes:
|
||
|
# - .:/integration
|
||
|
tty: true
|