Skip to content

Instantly share code, notes, and snippets.

version: '3.1'
services:
production-nginx-container:
container_name: 'production-nginx-container'
image: nginx:latest
ports:
- "80:80”
- "443:443”
@MichalWi
MichalWi / docker-compose.yml
Created October 12, 2018 14:41
following this tutorial:
version: '3.1'
services:
production-nginx-container:
container_name: 'production-nginx-container'
image: nginx:latest
ports:
- "80:80”
- "443:443”
import Ember from 'ember';
export default Ember.Component.extend({
});