Skip to content

Instantly share code, notes, and snippets.

@holdenrehg
Created June 18, 2019 15:54
Show Gist options
  • Save holdenrehg/b36837c777366c9ee732026f604b9ed8 to your computer and use it in GitHub Desktop.
Save holdenrehg/b36837c777366c9ee732026f604b9ed8 to your computer and use it in GitHub Desktop.
docker-compose-with-hostnames
version: '3.3'
services:
app:
build:
context: .
dockerfile: services/app/Dockerfile
ports:
- 5000:5000
networks:
- appnet
hostname: "app.local"
networks:
appnet:
aliases:
- "app.local"
networks:
appnet:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment