22 lines
410 B
YAML
22 lines
410 B
YAML
|
version: "3.7"
|
||
|
services:
|
||
|
blessing-skin:
|
||
|
image: blessing-skin:latest
|
||
|
container_name: blessing-skin
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 8013:80
|
||
|
environment:
|
||
|
- TZ=Asia/Shanghai
|
||
|
volumes:
|
||
|
- blessing-skin-storage:/app/storage
|
||
|
|
||
|
volumes:
|
||
|
blessing-skin-storage:
|
||
|
name: blessing-skin-storage
|
||
|
driver: local
|
||
|
driver_opts:
|
||
|
o: bind
|
||
|
type: none
|
||
|
device: ./storage
|