Frontend Component for DockerFlex - The missing file manager for Docker containers
3.6K
Frontend component of DockerFlex - providing an elegant UI for managing Docker container files.
🔍 Container Overview
📁 File Management
🛠 Developer Experience
services:
frontend:
image: mbakgun/dockerflex-frontend:latest
hostname: dockerflex-frontend
container_name: dockerflex-frontend
ports:
- "3200:3200"
environment:
- VITE_API_URL=/api
- VITE_BACKEND_URL=http://backend:4200
networks:
- app-network
backend:
image: mbakgun/dockerflex-backend:latest
hostname: dockerflex-backend
container_name: dockerflex-backend
expose:
- "4200"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- app-network
networks:
app-network:
driver: bridge
docker compose up -d
Access the web interface at: http://localhost:3200
| Variable | Description | Default |
|---|---|---|
| VITE_HOSTNAME | Custom hostname display | Docker Desktop |
| VITE_API_URL | Backend API endpoint path | /api |
| VITE_BACKEND_URL | Internal backend URL | http://backend:4200 |
For local development:
git clone https://github.com/mbakgun/dockerflex.git
cd dockerflex
docker compose -f docker-compose-local.yml up --build
MIT License - see the LICENSE file for details.
Content type
Image
Digest
sha256:bcaaec897…
Size
84.2 MB
Last updated
11 months ago
docker pull mbakgun/dockerflex-frontend