Compare commits

...

2 commits

Author SHA1 Message Date
f440b1becc 👷 add docker compose file
All checks were successful
ci / docker (push) Successful in 1m16s
2023-11-09 21:12:45 +01:00
143433c072 🙈 add .env to .gitignore 2023-11-09 21:12:16 +01:00
2 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ pyvenv.cfg
pip-selfcheck.json
__pycache__
tags
.env

9
docker-compose.yml Normal file
View file

@ -0,0 +1,9 @@
version: "3.7"
services:
matrix:
container_name: reminder
image: gitea.pimux.de/finn/reminder:latest
restart: unless-stopped
ports:
- ${PORT:-8000}:8000