Browse Source

Merge branch 'devel' into 'master'

Updating and setting versions

See merge request cyber5k/mistborn!93
merge-requests/94/merge
Steven Foerster 4 years ago
parent
commit
6bcd5f359b
  1. 11
      base.yml
  2. 2
      compose/production/postgres/Dockerfile
  3. 2
      compose/production/tor/Dockerfile
  4. 2
      compose/production/traefik/Dockerfile
  5. 2
      extra/bitwarden.yml
  6. 2
      extra/elasticsearch.yml
  7. 4
      extra/guacamole.yml
  8. 2
      extra/syncthing.yml
  9. 4
      extra/wazuh.yml

11
base.yml

@ -51,7 +51,7 @@ services: @@ -51,7 +51,7 @@ services:
# context: .
# dockerfile: ./compose/production/traefik/Dockerfile
#image: mistborn_production_traefik
image: traefik:v2.2
image: traefik:v2.4.9
container_name: mistborn_production_traefik
depends_on:
- django
@ -119,7 +119,7 @@ services: @@ -119,7 +119,7 @@ services:
restart: unless-stopped
redis:
image: redis:5.0
image: redis:6.2-alpine
container_name: mistborn_production_redis
restart: unless-stopped
@ -192,7 +192,7 @@ services: @@ -192,7 +192,7 @@ services:
pihole:
container_name: mistborn_production_pihole
image: pihole/pihole:v5.7
image: pihole/pihole:v5.8
env_file:
- ./.envs/.production/.pihole
ports:
@ -211,8 +211,9 @@ services: @@ -211,8 +211,9 @@ services:
- "traefik.http.services.pihole-service.loadbalancer.server.port=80"
environment:
- ServerIP=10.2.0.3
- DNS1='10.2.0.2#5054' # docs say port 5054, was 54; use network_mode: host to see which port is used
- DNS2=''
- PIHOLE_DNS_=10.2.0.2#5054
#- DNS1='10.2.0.2#5054' # docs say port 5054, was 54; use network_mode: host to see which port is used
#- DNS2=''
- IPv6='false'
- DNSMASQ_LISTENING=all
# TZ: 'America/New York'

2
compose/production/postgres/Dockerfile

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
FROM postgres:11.3
FROM postgres:13.3-alpine
COPY ./compose/production/postgres/maintenance /usr/local/bin/maintenance
RUN chmod +x /usr/local/bin/maintenance/*

2
compose/production/tor/Dockerfile

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
FROM alpine:latest
FROM alpine:3.14.0
RUN apk update \
&& apk upgrade \

2
compose/production/traefik/Dockerfile

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
FROM traefik:v2.2
FROM traefik:v2.4.9
RUN mkdir -p /etc/traefik/acme
RUN touch /etc/traefik/acme/acme.json
RUN chmod 600 /etc/traefik/acme/acme.json

2
extra/bitwarden.yml

@ -2,7 +2,7 @@ version: '3' @@ -2,7 +2,7 @@ version: '3'
services:
bitwarden:
image: bitwardenrs/server:latest
image: vaultwarden/server:latest
container_name: mistborn_production_bitwarden
env_file:
- ../.envs/.production/.bitwarden

2
extra/elasticsearch.yml

@ -3,7 +3,7 @@ version: '3.7' @@ -3,7 +3,7 @@ version: '3.7'
services:
elasticsearch:
image: amazon/opendistro-for-elasticsearch:1.12.0
image: amazon/opendistro-for-elasticsearch:1.13.2
hostname: elasticsearch
restart: unless-stopped
ports:

4
extra/guacamole.yml

@ -5,7 +5,7 @@ services: @@ -5,7 +5,7 @@ services:
# guacd
guacd:
container_name: mistborn_production_guacd
image: guacamole/guacd
image: guacamole/guacd:1.3.0
networks:
guacnetwork:
restart: unless-stopped
@ -53,7 +53,7 @@ services: @@ -53,7 +53,7 @@ services:
#GUACAMOLE_HOME: /config
env_file:
- ../.envs/.production/.guacamole
image: guacamole/guacamole
image: guacamole/guacamole:1.3.0
links:
- guacd
networks:

2
extra/syncthing.yml

@ -2,7 +2,7 @@ version: '3' @@ -2,7 +2,7 @@ version: '3'
services:
syncthing:
image: linuxserver/syncthing
image: linuxserver/syncthing:latest
container_name: mistborn_production_syncthing
environment:
- PUID=1000

4
extra/wazuh.yml

@ -3,7 +3,7 @@ version: '3.7' @@ -3,7 +3,7 @@ version: '3.7'
services:
wazuh:
image: wazuh/wazuh-odfe:4.1.2
image: wazuh/wazuh-odfe:4.1.5
hostname: wazuh-manager
restart: unless-stopped
ports:
@ -29,7 +29,7 @@ services: @@ -29,7 +29,7 @@ services:
- filebeat_var:/var/lib/filebeat
wazuh-kibana:
image: wazuh/wazuh-kibana-odfe:4.1.2
image: wazuh/wazuh-kibana-odfe:4.1.5
hostname: wazuh-kibana
restart: unless-stopped
labels:

Loading…
Cancel
Save