Skip to content

Commit

Permalink
added static fileserver
Browse files Browse the repository at this point in the history
  • Loading branch information
Bienvenido Benoit Ranque committed Apr 8, 2019
1 parent 3a1b48f commit af6e1a8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# production configuration. See docker-compose.override.yml from development specific configurations
version: '3.6'
services:
nginx:
image: nginx:stable-alpine
ports:
- "80:80"
- "443:443"
restart: on-failure
volumes:
- ./nginx/html:/usr/share/nginx/html:ro
postgres:
image: postgres:11-alpine
restart: always
Expand Down Expand Up @@ -65,4 +73,6 @@ services:
PGPORT: 5432
AUTH_JWT_SECRET: ${AUTH_JWT_SECRET}
depends_on:
- postgres
- postgres
volumes:
- ./business-logic/files:/usr/app/files

0 comments on commit af6e1a8

Please sign in to comment.