moved compose examples to docs
This commit is contained in:
parent
49862c6a3a
commit
057f96ee46
4 changed files with 34 additions and 0 deletions
15
docs/compose/docker-compose-apprise.yml
Normal file
15
docs/compose/docker-compose-apprise.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
target: base
|
||||||
|
container_name: go-watch
|
||||||
|
volumes:
|
||||||
|
- /home/david/tmp/:/config
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
apprise:
|
||||||
|
image: caronc/apprise:latest
|
19
docs/compose/docker-compose-browserless.yml
Normal file
19
docs/compose/docker-compose-browserless.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
target: base
|
||||||
|
container_name: go-watch
|
||||||
|
environment:
|
||||||
|
- GOWATCH_BROWSERLESS_URL=http://browserless:3000/content
|
||||||
|
volumes:
|
||||||
|
- /home/david/tmp/:/config
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
apprise:
|
||||||
|
image: caronc/apprise:latest
|
||||||
|
browserless:
|
||||||
|
image: browserless/chrome:latest
|
Loading…
Add table
Reference in a new issue