We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d23a91 commit 47bd78cCopy full SHA for 47bd78c
1 file changed
docker/rpi/docker-compose.yml
@@ -0,0 +1,28 @@
1
+version: '3.8'
2
+
3
+services:
4
+ slips:
5
+ image: stratosphereips/slips:latest
6
+ container_name: slips
7
+ networks:
8
+ slips_custom_network:
9
+ ipv4_address: 172.20.0.10
10
+ command: /bin/bash
11
+ ports:
12
+ - "55000:55000" # expose web interface to host on port 55000
13
+ shm_size: 512m
14
+ deploy:
15
+ resources:
16
+ limits:
17
+ memory: 8g
18
+ reservations:
19
20
+ restart: unless-stopped # optional, keeps container alive if crash
21
22
+networks:
23
24
+ driver: bridge
25
+ ipam:
26
+ config:
27
+ - subnet: 172.20.0.0/16
28
+ gateway: 172.20.0.1
0 commit comments