further changes requested by Tirokk

This commit is contained in:
Moriz Wahl 2020-12-01 10:46:41 +01:00
parent e47671c52a
commit af54ec3704
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# domain is the user-facing domain.
domain: develop.ocelot.social
domain: develop-docker.ocelot.social
# commit is the latest github commit deployed.
commit: 889a7cdd24dda04a139b2b77d626e984d6db6781
# dbInitialization runs the database initializations in a post-install hook.
@ -39,7 +39,7 @@ neo4jResourceRequestsMemory: "1G"
# supportEmail is used for letsencrypt certs.
supportEmail: "devops@ocelot.social"
# smtpHost is the host for the mailserver.
smtpHost: "mailserver.ocelot.social"
smtpHost: "mail.ocelot.social"
# smtpPort is the port to be used for the mailserver.
smtpPort: \"25\"
# jwtSecret is used to encode/decode a user's JWT for authentication

View File

@ -61,6 +61,8 @@ services:
ports:
- 7687:7687
- 7474:7474
volumes:
- neo4j_data:/data
networks:
hc-network:
volumes:

View File

@ -1,5 +1,5 @@
FROM node:12.19.0-alpine3.10 as build
ABEL Description="Maintenance page of the Social Network ocelot.social" Vendor="ocelot.social Community" Version="0.0.1" Maintainer="ocelot.social Community (devops@ocelot.social)"
LABEL Description="Maintenance page of the Social Network ocelot.social" Vendor="ocelot.social Community" Version="0.0.1" Maintainer="ocelot.social Community (devops@ocelot.social)"
EXPOSE 3000
CMD ["yarn", "run", "start"]