docker-compose.yml
· 341 B · YAML
原始檔案
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
environment:
PORT: 8081
volumes:
- ./tmp:/app/tmp:rw
- ./doctmp:/tmp:rw
restart: always
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 | environment: |
9 | PORT: 8081 |
10 | volumes: |
11 | - ./tmp:/app/tmp:rw |
12 | - ./doctmp:/tmp:rw |
13 | restart: always |