This repository has been archived on 2026-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
ServerFileManager/docker-compose.yml
Hayden Hargreaves db2d68ab1d Working on CI/CD
2025-03-05 21:15:35 -07:00

25 lines
721 B
YAML

version: "3.8"
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3100:3100"
depends_on:
- backend
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "5000:5000"
volumes:
# TODO: This will need to be configured, need to rebuild part of the program for that though
- /home/azpect/Documents:/home/azpect/Documents
environment:
FILE_GOPHERNEST_USER: ${FILE_GOPHERNEST_USER}
FILE_GOPHERNEST_PASSWORD: ${FILE_GOPHERNEST_PASSWORD}
FILE_GOPHERNEST_JWT_SECRET: ${FILE_GOPHERNEST_JWT_SECRET}
DOCKERHUB_USERNAME: ${DOCKERHUB_USERNAME}
DOCKERHUB_TOKEN: ${DOCKERHUB_TOKEN}