add docker-compose file

This commit is contained in:
2024-04-01 05:26:10 +02:00
parent 683002343c
commit 33bcb09556
+14
View File
@@ -0,0 +1,14 @@
version: '3.3'
services:
battlesnake:
image: daniel156161/battlesnake
container_name: battlesnake
ports:
- 8000:8000
volumes:
- ./history:/app/history
build:
context: ./
dockerfile: Dockerfile
restart: always