docker-compose.yml
· 402 B · YAML
Bruto
services:
reubah:
container_name: reubah
hostname: reubah
image: ghcr.io/dendianugerah/reubah:latest
ports: ## commenta se utilizzi un reverse proxy
- 8081:8081 ## anche questa riga
security_opt:
- no-new-privileges:true
environment:
- PORT=8081
volumes:
- ./doc-tmp:/tmp:rw
cap_drop:
- ALL
restart: unless-stopped
1 | services: |
2 | reubah: |
3 | container_name: reubah |
4 | hostname: reubah |
5 | image: ghcr.io/dendianugerah/reubah:latest |
6 | ports: ## commenta se utilizzi un reverse proxy |
7 | - 8081:8081 ## anche questa riga |
8 | security_opt: |
9 | - no-new-privileges:true |
10 | environment: |
11 | - PORT=8081 |
12 | volumes: |
13 | - ./doc-tmp:/tmp:rw |
14 | cap_drop: |
15 | - ALL |
16 | restart: unless-stopped |
17 |