Primo caricamento
This commit is contained in:
4
.env
Normal file
4
.env
Normal 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
15
docker-compose.yml
Normal 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:
|
||||||
Reference in New Issue
Block a user