2020-03-06 18:25:16 +00:00
## Compose sample application
2022-09-01 16:39:33 +00:00
### Use with Docker Development Environments
You can open this sample in the Dev Environments feature of Docker Desktop version 4.12 or later.
[Open in Docker Dev Environments <img src="../open_in_new.svg" alt="Open in Docker Dev Environments" align="top"/> ](https://open.docker.com/dashboard/dev-envs?url=https://github.com/docker/awesome-compose/tree/master/nginx-golang )
2022-07-12 08:27:45 +00:00
### NGINX proxy with Go backend
2020-03-06 18:25:16 +00:00
Project structure:
```
.
├── backend
│ ├── Dockerfile
│ └── main.go
2022-05-10 09:59:25 +00:00
├── compose.yaml
2022-07-12 08:27:45 +00:00
├── proxy
2020-03-06 18:25:16 +00:00
│ └── nginx.conf
└── README.md
```
2022-07-12 08:27:45 +00:00
[`compose.yaml` ](compose.yaml )
2020-03-06 18:25:16 +00:00
```
services:
2022-07-12 08:27:45 +00:00
proxy:
image: nginx
volumes:
- type: bind
source: ./proxy/nginx.conf
target: /etc/nginx/conf.d/default.conf
read_only: true
2020-03-06 18:25:16 +00:00
ports:
2020-04-12 19:42:42 +00:00
- 80:80
depends_on:
- backend
2022-07-12 08:27:45 +00:00
2020-03-06 18:25:16 +00:00
backend:
2022-07-12 08:27:45 +00:00
build:
context: backend
target: builder
2020-03-06 18:25:16 +00:00
```
2022-07-12 08:27:45 +00:00
The compose file defines an application with two services `proxy` and `backend` .
2022-05-10 09:59:25 +00:00
When deploying the application, docker compose maps port 80 of the frontend service container to the same port of the host as specified in the file.
2020-04-12 19:42:42 +00:00
Make sure port 80 on the host is not already in use.
2020-03-06 18:25:16 +00:00
2022-05-10 09:59:25 +00:00
## Deploy with docker compose
2020-03-06 18:25:16 +00:00
```
2022-05-10 09:59:25 +00:00
$ docker compose up -d
2020-03-06 18:25:16 +00:00
Creating network "nginx-golang_default" with the default driver
Building backend
Step 1/7 : FROM golang:1.13 AS build
1.13: Pulling from library/golang
...
Successfully built 4b24f27138cc
2022-07-12 08:27:45 +00:00
Successfully tagged nginx-golang_proxy:latest
2020-03-06 18:25:16 +00:00
Creating nginx-golang_backend_1 ... done
2022-07-12 08:27:45 +00:00
Creating nginx-golang_proxy_1 ... done
2020-03-06 18:25:16 +00:00
```
## Expected result
Listing containers must show two containers running and the port mapping as below:
```
2022-07-12 08:27:45 +00:00
$ docker compose ps
NAME COMMAND SERVICE STATUS PORTS
nginx-golang-backend-1 "/code/bin/backend" backend running
nginx-golang-proxy-1 "/docker-entrypoint.…" proxy running 0.0.0.0:80->80/tcp
2020-03-06 18:25:16 +00:00
```
2020-03-23 23:36:46 +00:00
After the application starts, navigate to `http://localhost:80` in your web browser or run:
2020-03-06 18:25:16 +00:00
```
2020-03-23 23:36:46 +00:00
$ curl localhost:80
2020-03-06 18:25:16 +00:00
## .
## ## ## ==
## ## ## ## ## ===
/"""""""""""""""""\___/ ===
{ / ===-
\______ O __ /
\ \ __ /
\____\_______/
Hello from Docker!
```
Stop and remove the containers
```
2022-05-10 09:59:25 +00:00
$ docker compose down
2020-03-06 18:25:16 +00:00
```