Skip to content

Instantly share code, notes, and snippets.

@febriliankr
Last active October 14, 2022 03:48
Show Gist options
  • Save febriliankr/ec0facff8849add9b7a7f958eb2b57f3 to your computer and use it in GitHub Desktop.
Save febriliankr/ec0facff8849add9b7a7f958eb2b57f3 to your computer and use it in GitHub Desktop.
Docker Compose Example
version: "3.9"
services:
api:
build:
context: .
dockerfile: Dockerfile
container_name: go-clean-architecture
env_file:
- .env # if you have an .env file in your root directory of the project
ports:
- 8080:5000
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment