Created
April 10, 2020 11:22
-
-
Save andmos/b09aeb7bdef0e0d991140e199f41ea6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
myservice: | |
image: andmos/myservice | |
expose: | |
- "80" | |
build: . | |
env_file: | |
- development.env | |
nginx: | |
image: nginx:mainline | |
ports: | |
- 5000:5000 | |
volumes: | |
- "./nginx/nginx.conf:/etc/nginx/nginx.conf" | |
- "./certs/:/usr/share/certs/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment