mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 02:38:07 +02:00
Move all samples to the root dir
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
parent
0c6fcde001
commit
f1e4cca535
262 changed files with 0 additions and 0 deletions
4
nginx-golang/frontend/Dockerfile
Normal file
4
nginx-golang/frontend/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM nginx:alpine
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
|
6
nginx-golang/frontend/nginx.conf
Normal file
6
nginx-golang/frontend/nginx.conf
Normal file
|
@ -0,0 +1,6 @@
|
|||
server {
|
||||
listen 80;
|
||||
location / {
|
||||
proxy_pass http://backend:80;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue