feat: Create docker release
- Updates `.goreleaser.yml` to add docker build step - Adds `Dockerfile` for listmonk - Adds `docker-compose.yml` for reference.
This commit is contained in:
parent
714a040295
commit
bdc837d03f
|
@ -27,3 +27,15 @@ archives:
|
|||
- config.toml.sample
|
||||
- README.md
|
||||
- LICENSE
|
||||
dockers:
|
||||
-
|
||||
goos: linux
|
||||
goarch: amd64
|
||||
binaries:
|
||||
- listmonk
|
||||
image_templates:
|
||||
- "knadh/listmonk:latest"
|
||||
- "knadh/listmonk:{{ .Tag }}"
|
||||
dockerfile: Dockerfile
|
||||
extra_files:
|
||||
- config.toml.sample
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
FROM alpine:latest AS deploy
|
||||
RUN apk --no-cache add ca-certificates
|
||||
COPY listmonk /
|
||||
COPY config.toml.sample /etc/listmonk/config.toml
|
||||
VOLUME ["/etc/listmonk"]
|
||||
CMD ["./listmonk", "--config", "/etc/listmonk/config.toml"]
|
|
@ -0,0 +1,42 @@
|
|||
# NOTE: This docker-compose.yml is meant to be just an example guideline
|
||||
# on how you can achieve the same. It is not intented to run out of the box
|
||||
# and you must edit the below configurations to suit your needs.
|
||||
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:11
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- type: volume
|
||||
source: listmonk-data
|
||||
target: /var/lib/postgresql/data
|
||||
networks:
|
||||
- listmonk
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=listmonk
|
||||
- POSTGRES_USER=listmonk
|
||||
- POSTGRES_DB=listmonk
|
||||
restart: unless-stopped
|
||||
|
||||
app:
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- db
|
||||
image: knadh/listmonk:latest
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ./config.toml
|
||||
target: /etc/listmonk/config.toml
|
||||
ports:
|
||||
- "9000:9000"
|
||||
networks:
|
||||
- listmonk
|
||||
|
||||
networks:
|
||||
listmonk:
|
||||
|
||||
volumes:
|
||||
listmonk-data:
|
Loading…
Reference in New Issue