36 lines
849 B
Markdown
36 lines
849 B
Markdown
# yacy
|
|
|
|
|
|
|
|
|
|
|
|
| Création | Portainer |
|
|
| ----------- | ------------------------------------------------------------ |
|
|
| Mise-à-jour | Watchtower |
|
|
| Port | 8490 |
|
|
| Liens | [Yacy](https://yacy.net)<br />[Github](https://github.com/yacy/yacy_search_server) |
|
|
|
|
|
|
|
|
```yaml
|
|
services:
|
|
yacy:
|
|
image: yacy/yacy_search_server:latest
|
|
container_name: yacy
|
|
network_mode: bridge
|
|
dns:
|
|
- 192.168.2.116
|
|
- 192.168.2.216
|
|
user: 1028:65536
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|
|
ports:
|
|
- 8490:8090
|
|
- 8443:8443
|
|
volumes:
|
|
- /volume1/docker/yacy/data:/opt/yacy_search_server/DATA:rw
|
|
restart: unless-stopped
|
|
|
|
```
|
|
|