docker-compose 模板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
393 B

3 years ago
version: '3'
services:
server:
image: cbenning/fussel:latest
container_name: fussel
environment:
- USER_UID=1000
- USER_GID=1000
- WATERMARK_ENABLE=false
- HTTP_ROOT=/
restart: "no"
privileged: true
volumes:
- ./app/input:/input:ro
- ./app/build:/fussel/web/build
- /etc/localtime:/etc/localtime
ports:
- "9080:80"