mirror of
https://gitee.com/kennylee/docker.git
synced 2024-12-02 11:58:15 +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
|
||
|
|
||
|
|