File: docker-compose.yml

package info (click to toggle)
php-uploadprogress 2.0.2%2B1.1.4-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 552 kB
  • sloc: ansic: 952; xml: 624; php: 61; makefile: 1
file content (17 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: "3.7"

services:

  webapp:
    container_name: uploadprogress-example
    image: uploadprogress-example
    build:
      context: ./.docker
      args:
        php_version: 7.4
        uploadprogress_version: 1.1.2
    ports:
      - "8080:80"
    volumes:
      - "./.tmp:/tmp"
      - ".:/var/www/html"