Go to file
2024-05-31 02:57:54 -04:00
admin-api Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00
admin-app Added container routes to backend and Dashboard.jsx to frontend. 2024-05-31 02:18:16 -04:00
.env.example-linux Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00
.env.example-windows Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00
.gitignore Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00
docker-compose.yml Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00
README.md Added bind mount for docker.sock. 2024-05-31 02:57:54 -04:00

This repository creates the admin user interface which serves the following purposes:

  • Enable contributors to login and manage their profile.
  • Enable contributors to spin up both a dev server to test their fork and a code server to edit their fork.
  • Enable contributors to easily access both of these interfaces.

Example Linux .env file

DOCKER_SOCK_PIPE=/var/run/docker.sock

Example Windows .env file

DOCKER_SOCK_PIPE=//./pipe/docker_engine

Create a .env file

Copy the Windows example .env file.

copy .env.example-windows .env

Copy the Linux example .env file.

cp .env.example-linux .env

Use docker compose to bring up admin app

Using docker compose:

docker compose --env-file .env up --build -d

Use docker compose to bring down admin app

Using docker compose:

docker compose down