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