Simple http + ftp server in docker #7478
Closed
drago1520
started this conversation in
Feature Requests
Replies: 1 comment
-
Here's my 1-click install template for an HTTP + ftp serverversion: '3.9'
services:
ftp:
image: delfer/alpine-ftp-server
environment:
- USERS=user|pass|/srv/http
ports:
- '9921:21'
- '21000-21010:21000-21010'
volumes:
- 'shared:/srv/http'
restart: unless-stopped
http:
image: pierrezemb/gostatic
environment:
- SERVICE_URL
volumes:
- 'shared:/srv/http'
restart: unless-stopped
For ftp login credentials:ip - your coolify server ip HTTP public URLs serverWhatever you set for Example: I have a file in the file system at/srv/http/cool.txt; this maps to Changing the configurationI've chosen port |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to have a simple Docker compose to upload files via ftp and share them with public urls
Beta Was this translation helpful? Give feedback.
All reactions