123456789101112131415161718192021 |
- version: "3.7"
- services:
- pixivfe:
- container_name: pixivfe
- hostname: pixivfe
- restart: always
- user: 65534:65534
- read_only: true
- security_opt:
- - no-new-privileges:true
- cap_drop:
- - ALL
- build:
- context: .
- dockerfile: Dockerfile
- ports:
- - "8282:8282"
- environment:
- - PIXIVFE_TOKEN=changethis
|