Skip to content

MG-RX93/docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Directory Structure

my-repo/
│
├── playbooks/          # Directory for Ansible playbooks
│   ├── project1/       # Playbooks for managing project 1
│   └── project2/       # Playbooks for managing project 2
│
├── inventories/        # Directory for Ansible inventory files
│   ├── project1/       # Inventory directory for project 1
│   │   └── hosts.ini   # Inventory file for project 1
│   │
│   └── project2/       # Inventory directory for project 2
│       └── hosts.ini   # Inventory file for project 2
│
├── README.md           # Project information and documentation
├── .gitignore          # Files and directories to ignore in Git
│
├── project1/           # Directory for the first project
│   ├── Dockerfile      # Main Docker build file for project 1
│   ├── .dockerignore   # Docker ignore file for project 1
│   ├── docker-compose.yml  # Docker Compose for project 1
│   ├── scripts/        # Scripts for building, deploying, etc.
│   ├── configs/        # Config files for Docker containers
│   └── src/            # Source code for the first project
│       ├── app1.py     # Example code for project 1
│       ├── requirements.txt  # Dependencies for project 1
│       └── ...
│
└── project2/           # Directory for the second project
    ├── Dockerfile      # Main Docker build file for project 2
    ├── .dockerignore   # Docker ignore file for project 2
    ├── docker-compose.yml  # Docker Compose for project 2
    ├── scripts/        # Scripts for building, deploying, etc.
    ├── configs/        # Config files for Docker containers
    └── src/            # Source code for the second project
        ├── app2.py     # Example code for project 2
        ├── requirements.txt  # Dependencies for project 2
        └── ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published