1
0

docker-compose.yml 185 B

1234567891011
  1. services:
  2. app:
  3. build:
  4. context: .
  5. target: runtime
  6. ports:
  7. - "8088:80"
  8. env_file: .env
  9. volumes:
  10. - ./data:/var/www/data
  11. restart: unless-stopped