Skip to content

Commit ef4259a

Browse files
committed
Updated to not use volumes
1 parent b46626b commit ef4259a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

_facilitator/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM nginx:1-alpine
2+
3+
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
4+
COPY ./src /usr/share/nginx/html

_facilitator/docker-compose.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
services:
22
nginx:
3-
image: nginx:1-alpine
3+
build: .
44
ports:
55
- 80:80
6-
volumes:
7-
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
8-
- ./src:/usr/share/nginx/html:ro

0 commit comments

Comments
 (0)