Create docker-compose.yaml
This commit is contained in:
parent
a3bdf0d145
commit
a9c94f4298
1 changed files with 49 additions and 0 deletions
49
deployment/managed-from-npm-ui/docker-compose.yaml
Normal file
49
deployment/managed-from-npm-ui/docker-compose.yaml
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
# Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
|
||||||
|
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
version: '3.3'
|
||||||
|
# docker compose for npm open-appsec integration
|
||||||
|
|
||||||
|
services:
|
||||||
|
appsec-npm:
|
||||||
|
container_name: npm-attachment
|
||||||
|
image: 'ghcr.io/openappsec/nginx-proxy-manager-attachment:latest'
|
||||||
|
ipc: host
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '80:80' # Public HTTP Port
|
||||||
|
- '443:443' # Public HTTPS Port
|
||||||
|
- '81:81' # Admin Web Port
|
||||||
|
volumes:
|
||||||
|
- ./data:/data
|
||||||
|
- ./letsencrypt:/etc/letsencrypt
|
||||||
|
- ./appsec-logs:/ext/appsec-logs
|
||||||
|
- ./appsec-localconfig:/ext/appsec
|
||||||
|
|
||||||
|
appsec-agent:
|
||||||
|
container_name: appsec-agent
|
||||||
|
image: 'ghcr.io/openappsec/agent:latest'
|
||||||
|
network_mode: service:appsec-npm
|
||||||
|
ipc: host
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
# adjust with your own email below
|
||||||
|
- user_email=user@email.com
|
||||||
|
- nginxproxymanager=true
|
||||||
|
- autoPolicyLoad=true
|
||||||
|
volumes:
|
||||||
|
- ./appsec-config:/etc/cp/conf
|
||||||
|
- ./appsec-data:/etc/cp/data
|
||||||
|
- ./appsec-logs:/var/log/nano_agent
|
||||||
|
- ./appsec-localconfig:/ext/appsec
|
||||||
|
command: /cp-nano-agent --standalone
|
Loading…
Reference in a new issue