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.

22 lines
475 B

3 years ago
version: '3.3'
services:
komga:
image: gotson/komga
container_name: komga
volumes:
- type: bind
source: ./app/config
target: /config
- type: bind
source: ./app/data
target: /data
- type: bind
source: /etc/timezone
target: /etc/timezone
read_only: true
ports:
- 8080:8080
user: "1000:1000"
environment:
- <ENV_VAR>=<extra configuration>
restart: unless-stopped