initial template

This commit is contained in:
CC
2026-05-20 22:59:27 +01:00
commit b45851e888
8 changed files with 152 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