Skip to content

Commit

Permalink
Merge pull request #61 from lawndoc/fix-compose-deployment
Browse files Browse the repository at this point in the history
Fix compose deployment
  • Loading branch information
lawndoc authored Sep 5, 2024
2 parents e677b4c + e8075fb commit 18a8b28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ RUN mkdir -p /run
WORKDIR /run
COPY . .
COPY config.json.template /config/config.json
RUN mkdir -p /state
COPY --from=deps /root/venv /root/venv

# prepare runtime environment
Expand Down
2 changes: 1 addition & 1 deletion config.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"syslog_address": "",
"teams_webhook": "",
"test_webhooks": false,
"verbosity": 2,
"verbosity": 2
}
2 changes: 2 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ services:
container_name: respotter
image: ghcr.io/lawndoc/respotter:latest
network_mode: host
security_opts:
- label:disable
restart: always
volumes:
- ./config:/config
Expand Down

0 comments on commit 18a8b28

Please sign in to comment.