missed docker-compose.yml file on initial checkin

This commit is contained in:
Radar231 2023-11-18 22:12:17 -05:00
parent 73aa72886f
commit 08ef3c1b40
1 changed files with 19 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
---
version: "2.1"
services:
twiki:
image: mhvelplund/twiki-docker
container_name: twiki
environment:
- PUID=1000
- PGID=1000
- TZ=America/Toronto
- URL_HOST=http://twiki.lan
- ADMIN_PW=pass1234
volumes:
- ./data:/data
ports:
- 80:80
restart: unless-stopped
# EOF