Skip to content

Docker Compose Setup with vsftpd Docker Container

Max edited this page Jan 13, 2024 · 1 revision
version: '3.7'

services:
  ftp-server:
    image: ghcr.io/maexled/docker-vsftpd:master
    ports:
      - 20:20
      - 21:21
      - 21100-21110:21100-21110
    environment:
      - FTP_USER=camera
      - FTP_PASS=password
      - PASV_MIN_PORT=21100
      - PASV_MAX_PORT=21110
    volumes:
      - ./temp:/home/vsftpd/camera
    restart: always

  camera-images-manager:
    image: ghcr.io/maexled/camera-images-bash-manager:master
    volumes:
      - ./camera/files:/camera/files
      - ./temp:/camera/temp
      - ./camera/config.cfg:/camera/config.cfg
    environment:
      - TZ=Europe/Berlin
    restart: always
Clone this wiki locally