mirror of
https://gitee.com/kennylee/docker.git
synced 2024-11-30 02:48:27 +08:00
15 lines
223 B
YAML
15 lines
223 B
YAML
version: '2'
|
|
services:
|
|
app:
|
|
image: kennylee26/gollum
|
|
container_name: gollum
|
|
ports:
|
|
- "4567:80"
|
|
restart: always
|
|
volumes:
|
|
- ./data:/wiki:z
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
|
|
|