Initial commit

This commit is contained in:
CC
2026-05-20 22:26:32 +00:00
commit be328f4726
11 changed files with 410 additions and 0 deletions

2
compose/.env Normal file
View File

@@ -0,0 +1,2 @@
APP_NAME=myservice
APP_PORT=8080

View File

@@ -0,0 +1,9 @@
services:
app:
image: your-image:latest
container_name: ${APP_NAME}
restart: unless-stopped
ports:
- "${APP_PORT}:8080"
environment:
- TZ=Europe/London