docker-compose.yml
· 353 B · YAML
Raw
services:
reubah:
container_name: 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
restart: unless-stopped
1 | services: |
2 | reubah: |
3 | container_name: reubah |
4 | image: ghcr.io/dendianugerah/reubah:latest |
5 | ports: ## commenta se utilizzi un reverse proxy |
6 | - 8081:8081 ## anche questa riga |
7 | security_opt: |
8 | - no-new-privileges:true |
9 | environment: |
10 | PORT: 8081 |
11 | volumes: |
12 | - ./doc-tmp:/tmp:rw |
13 | restart: unless-stopped |