20 lines
384 B
YAML
20 lines
384 B
YAML
services:
|
|
gotify:
|
|
image: gotify/server
|
|
container_name: gotify
|
|
restart: always
|
|
ports:
|
|
- "8090:80"
|
|
environment:
|
|
- GOTIFY_SERVER_PORT=80
|
|
- TZ=America/New_York
|
|
volumes:
|
|
- gotify_data:/app/data
|
|
|
|
volumes:
|
|
gotify_data:
|
|
driver: local
|
|
driver_opts:
|
|
type: none
|
|
o: bind
|
|
device: /mnt/swarm_shared/legacy_volumes/gotify/ |