Awesome Docker Compose samples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
awesome-compose/nginx-golang
Guillaume Lours 18f59bdb09 remove references to Dev Environments feature 1 month ago
..
backend nginx-golang: add dev envs support (#273) 2 years ago
proxy nginx-golang: add dev envs support (#273) 2 years ago
README.md remove references to Dev Environments feature 1 month ago
compose.yaml nginx-golang: add dev envs support (#273) 2 years ago

README.md

Compose sample application

NGINX proxy with Go backend

Project structure:

.
├── backend
│   ├── Dockerfile
│   └── main.go
├── compose.yaml
├── proxy
│   └── nginx.conf
└── README.md

compose.yaml

services:
  proxy:
    image: nginx
    volumes:
      - type: bind
        source: ./proxy/nginx.conf
        target: /etc/nginx/conf.d/default.conf
        read_only: true
    ports:
      - 80:80
    depends_on:
      - backend

  backend:
    build:
      context: backend
      target: builder

The compose file defines an application with two services proxy and backend. 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. Make sure port 80 on the host is not already in use.

Deploy with docker compose

$ docker compose up -d
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
Successfully tagged nginx-golang_proxy:latest
Creating nginx-golang_backend_1 ... done
Creating nginx-golang_proxy_1 ... done

Expected result

Listing containers must show two containers running and the port mapping as below:

$ 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

After the application starts, navigate to http://localhost:80 in your web browser or run:

$ curl localhost:80

          ##         .
    ## ## ##        ==
 ## ## ## ## ##    ===
/"""""""""""""""""\___/ ===
{                       /  ===-
\______ O           __/
 \    \         __/
  \____\_______/

	
Hello from Docker!

Stop and remove the containers

$ docker compose down