Skip to content

Commit

Permalink
feat: added example docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Jan 28, 2024
1 parent c63ffdb commit aa8202b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: "3.9"

services:
server:
image: bddvlpr/untis-ics-sync:latest
restart: unless-stopped
environment:
UNTIS_SCHOOLNAME:
UNTIS_USERNAME:
UNTIS_PASSWORD:
UNTIS_BASEURL:

BULL_REDIS_HOST: redis
BULL_REDIS_PORT: 6379
ports:
- 3000:3000
depends_on:
- redis
redis:
image: redis:7
restart: unless-stopped
command: redis-server
volumes:
- redis-data:/data

volumes:
redis-data:

0 comments on commit aa8202b

Please sign in to comment.