Add Dockerfile for nginx
This commit is contained in:
parent
f1515a32dc
commit
b120af8e7f
@ -25,13 +25,12 @@ services:
|
||||
- db.env
|
||||
|
||||
web:
|
||||
image: nginx
|
||||
build: ./web
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- nextcloud:/var/www/html:ro
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
|
||||
cron:
|
||||
build: ./app
|
||||
|
@ -0,0 +1,3 @@
|
||||
FROM nginx
|
||||
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
@ -21,13 +21,12 @@ services:
|
||||
- db.env
|
||||
|
||||
web:
|
||||
image: nginx
|
||||
build: ./web
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- nextcloud:/var/www/html:ro
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
|
||||
volumes:
|
||||
db:
|
||||
|
@ -0,0 +1,3 @@
|
||||
FROM nginx
|
||||
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
@ -18,13 +18,12 @@ services:
|
||||
- db.env
|
||||
|
||||
web:
|
||||
image: nginx
|
||||
build: ./web
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- nextcloud:/var/www/html:ro
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
|
||||
volumes:
|
||||
db:
|
||||
|
@ -0,0 +1,3 @@
|
||||
FROM nginx
|
||||
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
Loading…
Reference in New Issue
Block a user