An open API service indexing awesome lists of open source software.

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.

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 compose

Afterwards, 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
## Example

cd portainer-ce
docker-compose up -d
```