blob: 39bfd6e8cf10e4ef0cabe7cdcdc126a4d9dc3226 (
plain) (
tree)
|
|
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:
- DT_ENV=prod
hostname: donetick-core
command: ["/donetick-core"] # Command to execute your binary inside the container
networks:
default:
|