Primo caricamento

This commit is contained in:
Francesco Picone
2025-12-29 15:24:21 +01:00
commit 35b8915a5a
2 changed files with 19 additions and 0 deletions

4
.env Normal file
View File

@@ -0,0 +1,4 @@
APP_PORT=8181
GOTIFY_DEFAULTUSER_NAME=GOTIFY_DEFAULTUSER_NAME
GOTIFY_DEFAULTUSER_PASS=GOTIFY_DEFAULTUSER_PASS
RESTART=always

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
gotify:
image: gotify/server:latest
container_name: gotify
restart: ${RESTART}
ports:
- "${APP_PORT}:80"
environment:
- GOTIFY_DEFAULTUSER_NAME=${GOTIFY_DEFAULTUSER_NAME}
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_DEFAULTUSER_PASS}
volumes:
- ./gotify_data:/app/data
volumes:
gotify_data: