mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
28 lines
611 B
YAML
28 lines
611 B
YAML
services:
|
|
pixivfe:
|
|
container_name: pixivfe
|
|
hostname: pixivfe
|
|
image: vnpower/pixivfe:latest
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
init: true
|
|
ports:
|
|
# Only specify 0.0.0.0 for host_ip if you are **not** using a reverse proxy
|
|
- name: http
|
|
target: 8282
|
|
host_ip: 127.0.0.1
|
|
published: 8282
|
|
protocol: tcp
|
|
app_protocol: http
|
|
env_file:
|
|
- path: .env
|
|
required: true
|
|
restart: unless-stopped
|
|
cap_drop:
|
|
- ALL
|
|
read_only: true
|
|
user: 10001:10001
|
|
security_opt:
|
|
- no-new-privileges:true
|