sshportal/examples/integration/docker-compose.yml

28 lines
446 B
YAML
Raw Normal View History

version: '3.0'
services:
sshportal:
image: moul/sshportal
environment:
- SSHPORTAL_DEFAULT_ADMIN_INVITE_TOKEN=integration
command: server --debug
2018-01-02 18:24:27 +08:00
depends_on:
- testserver
ports:
- 2222
testserver:
image: moul/sshportal
command: _test_server
ports:
- 2222
client:
build: .
depends_on:
- sshportal
2018-01-02 18:24:27 +08:00
- testserver
#volumes:
# - .:/integration
tty: true