docker-compose.yml 233 B

123456789101112131415
  1. version: "3"
  2. services:
  3. apt-cache:
  4. build:
  5. context: image
  6. args:
  7. UID: ${USERID}
  8. image: apt-cache
  9. volumes:
  10. - ./cache:/var/cache/apt-cacher-ng
  11. ports:
  12. - "3142:3142"
  13. user: ${USERID}