Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fly-apps/litestream-base

A base Docker image for adding Litestream to apps
https://github.com/fly-apps/litestream-base

Last synced: about 2 months ago
JSON representation

A base Docker image for adding Litestream to apps

Awesome Lists containing this project

README

        

# Litestream Base

Add this to an existing Dockerfile as a stage:

```Dockerfile
FROM flyio/litestream-base as litestream
```

Then, add these lines to the final stage:

```Dockerfile
## near the top of your dockerfile
COPY --from=litestream /litestream /litestream

# Replace your CMD with the litestream wrapper command

CMD [ "/litestream/start.sh" , ""]
```