https://github.com/seancassiere/docker-files
A collection of my docker-compose files for general use and development.
https://github.com/seancassiere/docker-files
Last synced: 7 months ago
JSON representation
A collection of my docker-compose files for general use and development.
- Host: GitHub
- URL: https://github.com/seancassiere/docker-files
- Owner: SeanCassiere
- Created: 2022-06-09T15:19:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T00:09:14.000Z (over 2 years ago)
- Last Synced: 2025-01-05T07:15:44.331Z (9 months ago)
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker files
This repository contains the docker-compose files used on my machine.
## Setup the machine
The following will need to be installed and configured on the machine.
1. Docker
2. Docker composeAfterwards, create the shared `webnet` bridge network in Docker using the following command.
```bash
docker network create -d bridge webnet
```## Using docker-compose files
To run any of the `docker-compose.yml` files, simply clone the repository, then `cd` into the respective directory.
Once in, spin-up the docker-compose file in detached mode using the following command.
```bash
## Examplecd portainer-ce
docker-compose up -d
```