aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
diff options
context:
space:
mode:
authorLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-06-30 21:41:41 -0400
committerLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-06-30 21:41:41 -0400
commitc13dd9addbf89f716e4ef5cfdf1d673139ffcb68 (patch)
treebc09646ce1d6d3a402abb4694e19da51b57204f6 /docker-compose.yaml
downloaddonetick-c13dd9addbf89f716e4ef5cfdf1d673139ffcb68.tar.gz
donetick-c13dd9addbf89f716e4ef5cfdf1d673139ffcb68.tar.bz2
donetick-c13dd9addbf89f716e4ef5cfdf1d673139ffcb68.zip
Move to Donetick Org, first commit
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000..efaee3a
--- /dev/null
+++ b/docker-compose.yaml
@@ -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: