netmaker/docker-compose.yml
Matthew R Kasun 088f2684df
Github actions for docker builds (#2)
* Get Group api test

* Initial Group Tests

* Most Delete Group Tests

* Group Tests Complete

* Refactor tests and move to test dir

* Refactor tests and move to test dir

* changed wirecat --> netmaker. Changed defaults to be more sensible

* putting netmaker default port 1 above WG port to avoid conflicts with preexisting setups

* fixed client side for multinet and added group filter to query params server side.

* fixed client side for multinet and added group filter to query params server side.

* cleaned up netclient uninstall for multiple networks

* added access token for ease of configuration

* added access token for ease of configuration

* peer update functionality

* auto delete timestamp works

* Arm docker (#1)

* learning github actions

* pubish docker

* pubish docker

* fixt uses

* docker git action

* rm arm7

* more events and tags

* fixed yml file

* simplified workflow

* simplified workflow

* fix missing tags

* another fix to yml

* another fix to yml

* fixing yml

* another try

* tags

* remove ghaction-docker-meta

* separate actions for dev & master

Co-authored-by: Matthew R Kasun <mkasun@nusak.ca>

Co-authored-by: Matthew R Kasun <mkasun@nusak.ca>
Co-authored-by: afeiszli <alex.feiszli@gmail.com>
Co-authored-by: Alex <31018251+afeiszli@users.noreply.github.com>
2021-04-06 17:36:22 -04:00

37 lines
740 B
YAML

version: "3.3"
services:
mongodb:
image: mongo:4.2
ports:
- "27017:27017"
container_name: mongodb
volumes:
- mongovol:/data/db
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: mongoadmin
MONGO_INITDB_ROOT_PASSWORD: mongopass
netmaker:
container_name: netmaker
depends_on:
- mongodb
image: gravitl/netmaker:v0.1-hotfix
ports:
- "8081:8081"
- "50051:50051"
environment:
MONGO_HOST: mongodb
restart: always
netmaker-ui:
container_name: netmaker-ui
depends_on:
- netmaker
image: gravitl/netmaker-ui:v0.1
ports:
- "80:80"
environment:
BACKEND_URL: "http://localhost:8081"
volumes:
mongovol: {}