Some corrections

master
Meliurwen 4 years ago
parent acc53bafc9
commit 0405da2939
Signed by: meliurwen
GPG Key ID: 818A8B35E9F1CE10
  1. 1
      .gitignore
  2. 12
      docker-compose.yml
  3. 2
      nginx.env.example
  4. 2
      nginx/Dockerfile

1
.gitignore vendored

@ -1,3 +1,4 @@
*.env
bibliogram/
nitter/
config/

@ -15,7 +15,7 @@ services:
- nginx.env
networks:
- default
- bibliogram
- socials
bibliogram:
build:
@ -26,9 +26,9 @@ services:
- "10407"
volumes:
- db:/app/db
- .config/bibliogram.config.js:/app/config.js
- ./config/bibliogram.config.js:/app/config.js
networks:
- bibliogram
- socials
nitter:
build:
@ -38,9 +38,9 @@ services:
expose:
- "8080"
volumes:
- .config/nitter.conf:/src/nitter.conf
- ./config/nitter.conf:/src/nitter.conf
networks:
- bibliogram
- socials
volumes:
db:
@ -49,4 +49,4 @@ networks:
default:
external:
name: ${NETWORK:-webservices}
bibliogram:
socials:

@ -6,7 +6,7 @@ BG_HOSTNAME=
BG_ADDR=bibliogram
BG_PORT=10407
BG_HOSTNAME=
NI_HOSTNAME=
NI_ADDR=nitter
NI_PORT=8080

@ -10,7 +10,7 @@ COPY root/ /
ENV BG_HOSTNAME=
ENV BG_ADDR=bibliogram
ENV BG_PORT=10407
ENV BG_HOSTNAME=
ENV NI_HOSTNAME=
ENV NI_ADDR=nitter
ENV NI_PORT=8080
ENV NGINX_LISTEN_PORT=80

Loading…
Cancel
Save