Move to Donetick Org, first commit

This commit is contained in:
Mo Tarbin 2024-06-30 21:41:41 -04:00
commit c13dd9addb
42 changed files with 7463 additions and 0 deletions

22
docker-compose.yaml Normal file
View file

@ -0,0 +1,22 @@
version: '3.3'
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: donetick-core
restart: unless-stopped
volumes:
# sqlite database:
- ./data:/usr/src/app/data
ports:
- "8085:8000"
environment:
- CA_ENV=prod
hostname: donetick-core
command: ["/donetick-core"] # Command to execute your binary inside the container
networks:
default: