version: "3.9" services: app: restart: unless-stopped build: context: . dockerfile: Dockerfile command: [ "/bin/serve_cache" ] environment: DUMP_FILENAME: '/dump/dump.db' ports: - "80:7000" volumes: - /mnt/dump.db:/dump/dump.db:ro