mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-26 21:32:15 +03:00
- use github actions and goreleaser to automatically build and publish release on new tags - build binaries - build dep/rpm packages for linux - build docker images tagged with release version and 'latest' tag - publish release on github releases - publish docker images on github container registry - replace `Dockerfile` with `Dockerfile.goreleaser` - update `docker-compose.yml` to use `ghcr.io`
16 lines
289 B
YAML
16 lines
289 B
YAML
version: '3.7'
|
|
services:
|
|
ssh-chat:
|
|
image: ghcr.io/shazow/ssh-chat:latest
|
|
ports:
|
|
- 2022:2022
|
|
restart: always
|
|
volumes:
|
|
- ./sshchat:/sshchat
|
|
command:
|
|
- --verbose
|
|
- --identity=id
|
|
- --bind=":2022"
|
|
- --admin=admins
|
|
- --motd=motd
|