Skip to content

Instantly share code, notes, and snippets.

View Satch09's full-sized avatar

Satch09 Satch09

  • Cape Town, South Africa
View GitHub Profile
@Satch09
Satch09 / docker-compose-notes.yml
Last active May 30, 2022 08:14
Docker-learning
version: "3.8"
# docker-compose automatically --rm
# all services defined within 1 docker-compose file
# will automatically be added to the same network
services:
# folder name + service name _1 = container name
mongodb:
container_name: "mongodb"
# override default docker-compose naming convention
image: "mongo"