Skip to content

Commit

Permalink
Merge pull request #145 from GSA-IAE-APPS/docker-stacks
Browse files Browse the repository at this point in the history
updates for docker stacks
  • Loading branch information
colinalford authored and GitHub Enterprise committed Mar 27, 2018
2 parents bbd868c + ec865f6 commit 29b51f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN npm rebuild node-sass
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log

EXPOSE 8080
EXPOSE 8443
RUN mkdir /run/nginx
# Set the default command to execute
# when creating a new container
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!groovy
//nodeJS Jenkinsfile

def pipeline = fileLoader.fromGit('pipeline', 'https://github.helix.gsa.gov/GSA-IAE/pipeline.git', 'alternative_pipeline', 'ghiaeapps', '')
def pipeline = fileLoader.fromGit('pipeline', 'https://github.helix.gsa.gov/GSA-IAE/pipeline.git', 'stacks_pipeline', 'ghiaeapps', '')
pipeline.start()
4 changes: 3 additions & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
server {
listen 8080 default_server;
listen 8443 ssl;
ssl_certificate /run/secrets/app.pem ;
ssl_certificate_key /run/secrets/app.key;

gzip on;
gzip_disable "msie6";
Expand Down

0 comments on commit 29b51f6

Please sign in to comment.