-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (46 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
52 lines (46 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
services:
# # Behat
# behat:
# hostname: behat
# #container_name: behat
# image: docksal/behat
# volumes:
# - ./testing:/src
# # Run a built-in web server for access to HTML reports
# ports:
# - 8000:8000
# entrypoint: "php -S 0.0.0.0:8000"
# networks:
# devnet:
# ipv4_address: 172.22.0.101
# selenium:
# image: selenium/standalone-chrome:4.1.1-20211217
# #container_name: selenium
# restart: always
# ports:
# - 4444:4444
# - 7900:7900
# shm_size: 2gb
# networks:
# devnet:
# ipv4_address: 172.22.0.102
jekyll:
#stdin_open: true
#tty: true
image: jekyll/jekyll:3.8
#container_name: jekyll
volumes:
- ./docs:/srv/jekyll
- ./docs/vendor/bundle:/usr/local/bundle
ports:
- 4000:4000
command: jekyll serve
networks:
devnet:
ipv4_address: 172.22.0.103
networks:
devnet:
ipam:
driver: default
config:
- subnet: "172.22.0.0/24"