Move to Donetick Org, first commit
This commit is contained in:
commit
c13dd9addb
42 changed files with 7463 additions and 0 deletions
22
docker-compose.yaml
Normal file
22
docker-compose.yaml
Normal 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:
|
Loading…
Add table
Add a link
Reference in a new issue