You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
594 B
31 lines
594 B
version: '3'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx
|
|
container_name: pxportal_nginx
|
|
networks:
|
|
- pxportal
|
|
volumes:
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
dnsmasq:
|
|
image: andyshinn/dnsmasq
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
volumes:
|
|
- ./conf/dnsmasq.conf:/etc/dnsmasq.conf
|
|
- ./conf/dnsmasq.d:/etc/dnsmasq.d
|
|
|
|
exporter:
|
|
container_name: pxportal_service
|
|
image: registry.preprod.pxcom.aero/pxcom-servers/pxportal-srv:latest
|
|
networks:
|
|
- pxportal
|
|
|
|
networks:
|
|
pxportal:
|
|
driver: bridge
|