Compare commits

...

2 Commits

Author SHA1 Message Date
daniel156161 a8eb6a4447 remove depricated version tag and use .env for container mount path
Build and Push Docker Container / build-and-push (push) Failing after 10m8s
2026-04-06 19:02:39 +02:00
daniel156161 5c1875be60 move imports that longst is ontop 2026-04-06 19:02:04 +02:00
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
version: '3.3'
services:
battlesnake:
image: daniel156161/battlesnake
@@ -7,7 +5,7 @@ services:
ports:
- 8000:8000
volumes:
- ./data:/app/data
- ${DOCKER_DATA_PATH}:/app/data
build:
context: ./
dockerfile: Dockerfile
+1 -1
View File
@@ -1,7 +1,7 @@
from quart_common.web.env import env_bool
from datetime import datetime, timezone
import asyncio, sqlite3, json, os, logging, sys
from datetime import datetime, timezone
from pathlib import Path
logger = logging.getLogger(__name__)