Created dockerfile and compose

This commit is contained in:
2025-11-17 01:47:26 +03:00
parent e42d492ef2
commit df7bf08099
3 changed files with 41 additions and 1 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
echo:
build:
context: .
dockerfile: Dockerfile
image: echo-image:latest
container_name: echo
restart: unless-stopped
ports:
- "8900:8900"
networks:
- echo-net
environment:
- TZ=UTC
networks:
echo-net:
name: echo-net