We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed7cda commit 5505044Copy full SHA for 5505044
3 files changed
Dockerfile
@@ -1,6 +1,6 @@
1
FROM python:3.10.4
2
3
-LABEL tech.tomy.docker.k.backend="0.1.0"
+LABEL tech.tomy.docker.k.backend="0.2.0"
4
LABEL maintainer="Tomy Hsieh @tomy0000000"
5
6
WORKDIR /usr/src/k-backend
docker-compose.yml
services:
k-backend:
- command: "uvicorn k_backend.main:app --host 0.0.0.0 --port 8000 --reload"
+ command: "uvicorn k_backend.main:app --host 0.0.0.0 --port 8000"
container_name: "k_backend_app"
depends_on:
- "postgres"
pyproject.toml
[tool.poetry]
name = "k-backend"
-version = "0.1.0"
+version = "0.2.0"
description = "The backend API server of K"
authors = ["Tomy Hsieh <tomy0000000@gmail.com>"]
license = "MIT"
0 commit comments