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
2025-03-06 15:52:15 -07:00

26 lines
786 B
YAML

# THIS FILE DOES NOT REFLECT THE COMPOSE FILE USED ON THE SERVER
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}