Update README.md

This commit is contained in:
Domenico Del Giudice 2025-03-02 16:14:03 +01:00 committed by GitHub
parent b2a5cbf027
commit d086940050
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -277,8 +277,8 @@ These errors are not critical and T-Pot should still function correctly.
conpot_local_kamstrup_382:
```
**Step 2** Add the following entry to the `docker-compose.yml` file, in the `services:` section:
<details>
<summary>Click to expand</summary>
<details>
<summary>Click to expand</summary>
```yaml
# Conpot default service
@ -294,27 +294,27 @@ These errors are not critical and T-Pot should still function correctly.
- CONPOT_TMP=/tmp/conpot
tmpfs:
- /tmp/conpot:uid=2000,gid=2000
# cpu_count: 1
# cpus: 0.25
# cpu_count: 1
# cpus: 0.25
networks:
- conpot_local_default
ports:
# - "69:69/udp"
# - "69:69/udp"
- "80:80"
- "102:102"
- "161:161/udp"
- "502:502"
# - "623:623/udp"
# - "623:623/udp"
- "2121:21"
- "44818:44818"
- "47808:47808/udp"
image: "dtagdevsec/conpot:24.04"
read_only: false
volumes:
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
- ${TPOT_DATA_PATH}/conpot/log:/var/log/conpot
# Conpot IEC104 service
# Conpot IEC104 service
conpot_IEC104:
container_name: conpot_IEC104
restart: always
@ -326,20 +326,20 @@ These errors are not critical and T-Pot should still function correctly.
- CONPOT_TMP=/tmp/conpot
tmpfs:
- /tmp/conpot:uid=2000,gid=2000
# cpu_count: 1
# cpus: 0.25
# cpu_count: 1
# cpus: 0.25
networks:
- conpot_local_IEC104
ports:
# - "161:161/udp"
# - "161:161/udp"
- "2404:2404"
image: "dtagdevsec/conpot:24.04"
read_only: true
volumes:
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
- ${TPOT_DATA_PATH}/conpot/log:/var/log/conpot
# Conpot guardian_ast service
# Conpot guardian_ast service
conpot_guardian_ast:
container_name: conpot_guardian_ast
restart: always
@ -351,8 +351,8 @@ These errors are not critical and T-Pot should still function correctly.
- CONPOT_TMP=/tmp/conpot
tmpfs:
- /tmp/conpot:uid=2000,gid=2000
# cpu_count: 1
# cpus: 0.25
# cpu_count: 1
# cpus: 0.25
networks:
- conpot_local_guardian_ast
ports:
@ -360,10 +360,10 @@ These errors are not critical and T-Pot should still function correctly.
image: "dtagdevsec/conpot:24.04"
read_only: true
volumes:
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
- ${TPOT_DATA_PATH}/conpot/log:/var/log/conpot
# Conpot ipmi
# Conpot ipmi
conpot_ipmi:
container_name: conpot_ipmi
restart: always
@ -375,8 +375,8 @@ These errors are not critical and T-Pot should still function correctly.
- CONPOT_TMP=/tmp/conpot
tmpfs:
- /tmp/conpot:uid=2000,gid=2000
# cpu_count: 1
# cpus: 0.25
# cpu_count: 1
# cpus: 0.25
networks:
- conpot_local_ipmi
ports:
@ -384,10 +384,10 @@ These errors are not critical and T-Pot should still function correctly.
image: "dtagdevsec/conpot:24.04"
read_only: true
volumes:
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
- ${TPOT_DATA_PATH}/conpot/log:/var/log/conpot
# Conpot kamstrup_382
# Conpot kamstrup_382
conpot_kamstrup_382:
container_name: conpot_kamstrup_382
restart: always
@ -399,8 +399,8 @@ These errors are not critical and T-Pot should still function correctly.
- CONPOT_TMP=/tmp/conpot
tmpfs:
- /tmp/conpot:uid=2000,gid=2000
# cpu_count: 1
# cpus: 0.25
# cpu_count: 1
# cpus: 0.25
networks:
- conpot_local_kamstrup_382
ports:
@ -409,7 +409,7 @@ These errors are not critical and T-Pot should still function correctly.
image: "dtagdevsec/conpot:24.04"
read_only: true
volumes:
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
# - $HOME/tpotce/data/conpot/log:/var/log/conpot
- ${TPOT_DATA_PATH}/conpot/log:/var/log/conpot
```