added compose yml
This commit is contained in:
parent
757b5f5712
commit
986ddf76bb
2 changed files with 80 additions and 0 deletions
49
README.md
49
README.md
|
@ -3,6 +3,55 @@
|
||||||
|
|
||||||
A change detection server that can notify through various services written in Go
|
A change detection server that can notify through various services written in Go
|
||||||
|
|
||||||
|
# Run
|
||||||
|
|
||||||
|
### Docker
|
||||||
|
|
||||||
|
Easiest way to get started is with the prebuilt docker image:
|
||||||
|
```
|
||||||
|
docker run \
|
||||||
|
-p 8080:8080 \
|
||||||
|
-v /host/path/to/config:/config \
|
||||||
|
ghcr.io/broodjeaap/go-watch:master
|
||||||
|
```
|
||||||
|
|
||||||
|
This will start GoWatch with a SQLite database, stored in the `/config` directory, which is probably fine for most use cases.
|
||||||
|
|
||||||
|
To use another database, the environment variable `GOWATCH_DATABASE_DSN` can be used, for example with a PostgreSQL database:
|
||||||
|
```
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
target: base
|
||||||
|
container_name: go-watch
|
||||||
|
environment:
|
||||||
|
- GOWATCH_DATABASE_DSN=postgres://gorm:gorm@db:5432/gorm
|
||||||
|
volumes:
|
||||||
|
- /host/path/to/config:/config
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
depends_on:
|
||||||
|
db:
|
||||||
|
condition: service_healthy
|
||||||
|
db:
|
||||||
|
image: postgres:15
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=gorm
|
||||||
|
- POSTGRES_PASSWORD=gorm
|
||||||
|
- POSTGRES_DB=gorm
|
||||||
|
volumes:
|
||||||
|
- /host/path/to/db:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
```
|
||||||
|
|
||||||
# Intro
|
# Intro
|
||||||
|
|
||||||
GoWatch works through filters, a filter performs operations on the input it recieves.
|
GoWatch works through filters, a filter performs operations on the input it recieves.
|
||||||
|
|
31
docker-compose.yml
Normal file
31
docker-compose.yml
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
target: base
|
||||||
|
container_name: go-watch
|
||||||
|
environment:
|
||||||
|
- GOWATCH_DATABASE_DSN=postgres://gorm:gorm@db:5432/gorm
|
||||||
|
volumes:
|
||||||
|
- /host/path/to/config:/config
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
depends_on:
|
||||||
|
db:
|
||||||
|
condition: service_healthy
|
||||||
|
db:
|
||||||
|
image: postgres:15
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=gorm
|
||||||
|
- POSTGRES_PASSWORD=gorm
|
||||||
|
- POSTGRES_DB=gorm
|
||||||
|
volumes:
|
||||||
|
- /host/path/to/db:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
Loading…
Add table
Reference in a new issue