mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-13 02:55:04 +08:00
06bb719a7b
This PR adds `config-demo.toml` to `Dockerfile` which uses the db host `demo-db`. This is more suited for demo setups. For normal docker installations the db host is changed back to `db` which is a better sane default. Reworded `INSTALL.md` and `README.md` for more clarity on docker installation and configuration.
7 lines
181 B
Docker
7 lines
181 B
Docker
FROM alpine:latest AS deploy
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /listmonk
|
|
COPY listmonk .
|
|
COPY config.toml.sample config.toml
|
|
COPY config-demo.toml .
|
|
CMD ["./listmonk"]
|