Files are identical (apart from the project name being different) and nothing is happening. Do I have to install/run any particular commands on the server I’m deploying to?
Shouldn’t have to, after the one time setup of SSH keys kamal should be able to remotely manage deployments (e.g. from GitHub Actions or your local repo).
I can’t see anything in the logs, I’m assuming it would be in the ‘release’ action? The keys get added, there’s a warning that they’re not github keys.
$ kamal accessory logs litestream
INFO [8bc2eb2d] Running **docker logs [APPNAME]-litestream --tail 100 --timestamps 2>&1** on [REDACTED]
ERROR (SSHKit::Command::Failed): Exception while executing on host [REDACTED]: docker exit status: 1
docker stdout: Error response from daemon: No such container: [REDACTED]-litestream
docker stderr: Nothing written
$ kamal details
INFO [b080cbc3] Running docker ps --filter name=^kamal-proxy$ on [REDACTED]
INFO [b080cbc3] Finished in 5.610 seconds with exit status 0 (successful).
Proxy Host: [REDACTED]
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
fa5f8fdb05c7 basecamp/kamal-proxy:v0.8.2 "kamal-proxy run" 42 minutes ago Up 42 minutes 0.0.0.0:80->80/tcp, [::]:80->80/tcp, 0.0.0.0:443->443/tcp, [::]:443->443/tcp kamal-proxy
INFO [e62a78a3] Running docker ps --filter label=service=[REDACTED] --filter label=destination= --filter label=role=web on [REDACTED]
INFO [e62a78a3] Finished in 0.083 seconds with exit status 0 (successful).
App Host: [REDACTED]
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ecb5529b26ae ghcr.io/[REDACTED]:latest "dotnet App.d…" 41 minutes ago Up 41 minutes 8080/tcp [REDACTED]-web-latest
INFO [57996a4c] Running docker ps --filter label=service=[REDACTED]-litestream on [REDACTED]
INFO [57996a4c] Finished in 0.085 seconds with exit status 0 (successful).
Accessory litestream Host: [REDACTED]
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
$ kamal accessory boot all
INFO [e82e77f2] Running **/usr/bin/env mkdir -p .kamal** on [REDACTED]
INFO [e82e77f2] Finished in 5.053 seconds with exit status 0 (**successful**).
Acquiring the deploy lock...
INFO [fa98cefe] Running **docker login ghcr.io -u [REDACTED] -p [REDACTED]** on [REDACTED]
Releasing the deploy lock...
ERROR (SSHKit::Command::Failed): Exception while executing on host [REDACTED]: docker exit status: 1
docker stdout: Nothing written
docker stderr: Error: Cannot perform an interactive login from a non TTY device
I don’t know why it’s not running, there must be an issue preventing it from running. Try running litestream locally with your config to see if it works, then try running the litestream/litestream docker image with your config in /etc/litestream.yml with your secrets set as environment variables which is effectively all the litestream docker app is doing.
Note Litestream expands environment variables in its configuration file, so you can just set your Environment variables in your Docker App or OS if you’re running it locally, which is how we use it:
I’m still trying all sorts to try and get it to auto-start with the github actions. I got it to start by adding a kamal accessory boot command into the release workflow, however it didn’t seem to actually do the replication so I assume that’s the issue.