docker-compose.template hinzugefügt

This commit is contained in:
2026-02-11 09:32:17 +00:00
parent a3f883b41d
commit 25a8d48612

12
docker-compose.template Normal file
View File

@@ -0,0 +1,12 @@
services:
__REPO_NAME__:
image: __FULL_URL__:__BUILD_TAG__
container_name: __REPO_NAME__
restart: unless-stopped
# Falls du Variablen aus der buildargs.env brauchst:
environment:
- APP_VERSION=__BUILD_TAG__
- BASE_IMAGE_USED=__BASE_IMAGE__
# Hier kannst du weitere Standard-Einstellungen definieren
ports:
- "8080:80"