Debugging apps with SSH
Get SSH access to your app
Enabling direct SSH access
1. Enable SSH port forwarding
...auterion-app.yml...
services:
<my-service-name>:
build: <location of Dockerfile>
ssh: true2. Make sure you have openssh-server installed in your app
3. Create an SSH keypair
ssh-keygen -t ed25519 -f my-app-key4. Insert public key in your app and start sshd
5. Access app
Last updated