-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (31 loc) · 767 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (31 loc) · 767 Bytes
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
version: "3.9"
services:
freenom:
build:
context: .
dockerfile: Dockerfile
image: freenom-image
extends:
file: ./common.yml
service: common_config
privileged: true
container_name: freenom
depends_on:
- aws-waf-solver
working_dir: /var/www/
volumes:
- ./.env:/app/.env
aws-waf-solver:
image: luolongfei/aws-waf-solver
container_name: aws-waf-solver
shm_size: 2gb
privileged: true
pull_policy: always
extends:
file: ./common.yml
service: common_config
volumes:
- ./.env:/app/.env
networks:
llf-networks:
driver: bridge