16 lines
270 B
YAML
16 lines
270 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
gotify:
|
||
|
container_name: gotify
|
||
|
hostname: gotify.local
|
||
|
image: gotify/server
|
||
|
ports:
|
||
|
- 8085:80
|
||
|
volumes:
|
||
|
- "/docker/appdata/gotify/data:/app/data"
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
name: "ubuntu-server"
|
||
|
external: true
|